Partager via


Imports.Count, propriété

Mise à jour : novembre 2007

Obtient une valeur indiquant le nombre d'objets de la collection. Lecture seule.

Espace de noms :  VSLangProj
Assembly :  VSLangProj (dans VSLangProj.dll)

Syntaxe

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

Valeur de propriété

Type : System.Int32

Retourne le nombre d'objets présents dans la collection.

Exemples

' 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

Autorisations

Voir aussi

Référence

Imports, interface

Membres Imports

VSLangProj, espace de noms