CpuCollection.Count 属性

Gets the number of Cpu entries in the collection.

命名空间:  Microsoft.SqlServer.Management.Smo
程序集:  Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)

语法

声明
Public ReadOnly Property Count As Integer 
    Get
用法
Dim instance As CpuCollection 
Dim value As Integer 

value = instance.Count
public int Count { get; }
public:
virtual property int Count {
    int get () sealed;
}
abstract Count : int 
override Count : int
final function get Count () : int

属性值

类型:System.Int32
Returns the number of Cpu entries in the collection. The return type is an T:[System.int] value.

实现

ICollection.Count

示例

The following example shows how to determine the total number of CPUs on an instance of SQL Server.

C#

using System;
using Microsoft.SqlServer.Management.Smo;

namespace samples
{
    class Program
    {
        static void Main(string[] args)
        {
            Server dbServer = new Server("(local)");
            dbServer.Refresh();
            Console.WriteLine("Total CPUs: {0}",
                dbServer.AffinityInfo.Cpus.Count);
        }
    }
}

Powershell

$dbServer = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$dbServer.Refresh()
Foreach ($cpu in $dbServer.AffinityInfo.Cpus)
{
   Write-Host "Total CPUs:" $dbServer.AffinityInfo.Cpus.Count
}

请参阅

参考

CpuCollection 类

Microsoft.SqlServer.Management.Smo 命名空间