Freigeben über


Imports.Count-Eigenschaft

Aktualisiert: November 2007

Ruft einen Wert ab, der die Anzahl der in der Auflistung enthaltenen Objekte angibt. Schreibgeschützt.

Namespace:  VSLangProj
Assembly:  VSLangProj (in VSLangProj.dll)

Syntax

ReadOnly Property Count As Integer

Dim instance As Imports
Dim value As Integer

value = instance.Count
int Count { get; }
property int Count {
    int get ();
}
function get Count () : int

Eigenschaftenwert

Typ: System.Int32

Die Anzahl der Objekte in der Auflistung.

Beispiele

' 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

Berechtigungen

Siehe auch

Referenz

Imports-Schnittstelle

Imports-Member

VSLangProj-Namespace