Udostępnij za pośrednictwem


Metoda References.Item —

Zwraca indeksowaną Reference obiektu.

Przestrzeń nazw:  VSLangProj
Zestaw:  VSLangProj (w VSLangProj.dll)

Składnia

'Deklaracja
Function Item ( _
    index As Object _
) As Reference
Reference Item(
    Object index
)
Reference^ Item(
    [InAttribute] Object^ index
)
abstract Item : 
        index:Object -> Reference
function Item(
    index : Object
) : Reference

Parametry

Wartość zwracana

Typ: VSLangProj.Reference
Zwraca Reference obiektu.

Uwagi

Ta metoda jest używana do pobierania określonego obiektu z References kolekcji.Nie ma żadnej gwarancji, że dany numer indeksu dla kolekcji zawsze będzie odwoływać się do tego samego towaru, ponieważ elementy mogą być dodany lub usunięty z kolekcji.Za pomocą numerów indeksu dla kolekcji jest przydatne, gdy iteracji całej kolekcji i elementy nie są dodawane lub usuwane podczas iteracji.

Przykłady

' 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    

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

References Interfejs

Przestrzeń nazw VSLangProj