Imports.Count (Propriedade)
Obtém um valor indicando o número de objetos na coleção. Somente leitura.
Namespace: VSLangProj
Assembly: VSLangProj (em vslangproj.dll)
Sintaxe
'Declaração
'Uso
Valor de propriedade
O número de objetos na coleção.
Exemplo
' 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
Consulte também
Referência
Imports (Interface)
Imports (Membros)
VSLangProj (Namespace)