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
参数
- bstrIdentity
类型:System.String
必选。Reference 对象的 Identity。
返回值
类型:VSLangProj.Reference
返回一个 Reference 对象。
备注
References 集合中的每个 Reference 对象都有一个 Identity。 Find 方法搜索并返回具有指定的 Identity 的 Reference 对象。
示例
' 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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。