SystemInformation CoreCount 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 int CoreCount { get; }

Property Value

Type: Int32
Remarks

Tests: DeltaEngine.Platforms.Tests.SystemInformationTests
Examples

2 unit tests call DeltaEngine.Platforms.SystemInformation.CoreCount
[Test]
public void HasCpuName()
{
    Assert.GreaterOrEqual(info.CoreCount, 1);
    Assert.IsFalse(string.IsNullOrEmpty(info.CpuName));
}
[Test]
public void VerifyCoreCountMatchesEnvironment()
{
    Assert.IsTrue(info.Username == Environment.UserName || info.Username == "MockUsername");
}
See Also