Share via


Propriété Count

Gets the number of Cpu entries in the collection.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
Public ReadOnly Property Count As Integer
    Get
'Utilisation
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

Valeur de propriété

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

Implémente

ICollection. . :: . .Count

Exemples

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
}