References.Item メソッド
インデックス付き Reference オブジェクトを返します。
名前空間: VSLangProj
アセンブリ: VSLangProj (vslangproj.dll 内)
構文
'宣言
'使用
パラメータ
- index
必ず指定します。Reference オブジェクトの Identity 文字列、または References コレクションに使用する 1 から始まるインデックスを指定します。
戻り値
Reference オブジェクトを返します。
解説
このメソッドは、References コレクションから特定のオブジェクトを取得する場合に使用します。コレクションの項目は追加されたり削除されたりすることがあるため、コレクションのインデックス番号が常に同じ項目を指すとは限りません。コレクションのインデックス番号は、コレクション全体の反復処理を行い、反復処理中に項目数の増減がない場合に使用すると便利です。
使用例
' Macro Editor
Imports VSLangProj
Public Sub FindExample()
' First project is a Visual Basic or C# project.
Dim theVSProject As VSProject = _
CType(DTE.Solution.Projects.Item(1).Object, VSProject)
Dim refs As References = theVSProject.References
Dim firstIdentity As String = refs.Item(1).Identity
Dim firstRef As Reference = refs.Find(firstIdentity)
' Are they the same object?
Dim isSame As Boolean = (firstRef.Identity = refs.Item(1).Identity)
MsgBox("Are they the same? " & isSame.ToString())
End Sub