References.Find 方法

搜索项目中的引用,以查找具有指定的 Identity 的对象。

命名空间:  VSLangProj
程序集:  VSLangProj(在 VSLangProj.dll 中)

语法

声明
Function Find ( _
    bstrIdentity As String _
) As Reference
Reference Find(
    string bstrIdentity
)
Reference^ Find(
    [InAttribute] String^ bstrIdentity
)
abstract Find : 
        bstrIdentity:string -> Reference 
function Find(
    bstrIdentity : String
) : Reference

参数

返回值

类型:VSLangProj.Reference
返回 Reference 对象。

备注

References 集合中的每个 Reference 对象都有一个 IdentityFind 方法搜索并返回具有指定的 IdentityReference 对象。

示例

' 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   

.NET Framework 安全性

请参见

参考

References 接口

VSLangProj 命名空间