Udostępnij za pośrednictwem


Właściwość Imports.Count —

Zwraca wartość wskazującą liczbę obiektów w kolekcji.Tylko do odczytu.

Przestrzeń nazw:  VSLangProj
Zestaw:  VSLangProj (w VSLangProj.dll)

Składnia

'Deklaracja
ReadOnly Property Count As Integer
int Count { get; }
property int Count {
    int get ();
}
abstract Count : int with get
function get Count () : int

Wartość właściwości

Typ: Int32
Liczba obiektów w kolekcji.

Przykłady

' Macro Editor
' This method creates string with a list of all the references
' by index in a References collection.
Imports VSLangProj
Function ListReferences(ByVal refs As References) _
   As String
   Dim i As Integer
   Dim list As String = ""
   For i = 1 To refs.Count
      list &= i.ToString() & " " & refs.Item(i).Identity & " " & _
         ControlChars.CrLf 
   Next
   Return list
End Function

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

Imports Interfejs

Przestrzeń nazw VSLangProj