SystemInformation CpuName Property Delta Engine Documentation

Namespace: DeltaEngine.Platforms
Assembly: DeltaEngine.Platforms (in DeltaEngine.Platforms.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public abstract string CpuName { get; }

Property Value

Type: String
Remarks

Tests: DeltaEngine.Platforms.Tests.SystemInformationTests
Examples

1 unit tests call DeltaEngine.Platforms.SystemInformation.CpuName
[Test]
public void HasCpuName()
{
    Assert.GreaterOrEqual(info.CoreCount, 1);
    Assert.IsFalse(string.IsNullOrEmpty(info.CpuName));
}
See Also