Imports.Count 属性
获取一个值,该值指示集合中对象的数目。 只读。
命名空间: VSLangProj
程序集: VSLangProj(在 VSLangProj.dll 中)
语法
声明
ReadOnly Property Count As Integer
int Count { get; }
property int Count {
int get ();
}
abstract Count : int with get
function get Count () : int
属性值
类型:Int32
集合中的对象数。
示例
' 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
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。