VCCodeModel.CodeElementFromFullName 方法
获取对象的指定代码元素的集合。
命名空间: Microsoft.VisualStudio.VCCodeModel
程序集: Microsoft.VisualStudio.VCCodeModel(在 Microsoft.VisualStudio.VCCodeModel.dll 中)
语法
声明
Function CodeElementFromFullName ( _
Name As String _
) As CodeElements
CodeElements CodeElementFromFullName(
string Name
)
CodeElements^ CodeElementFromFullName(
[InAttribute] String^ Name
)
abstract CodeElementFromFullName :
Name:string -> CodeElements
function CodeElementFromFullName(
Name : String
) : CodeElements
参数
- Name
类型:System.String
必选。要检索的元素的全名。
返回值
类型:EnvDTE.CodeElements
一个 CodeElements 集合。
示例
使用 CodeElementFromFullName,此示例添加类和函数,检索指针传递给函数,并添加参数它。
Sub AddFunction()
Dim vcCM As VCCodeModel
Dim vcClass As VCCodeClass
Dim vcFunction As VCCodeFunction
Dim vcParameter As VCCodeParameter
vcCM = DTE.Solution.Item(1).CodeModel
vcClass = vcCM.AddClass("MyClass", "MyClass.h")
vcClass.AddFunction("MyFunction", vsCMFunction.vsCMFunctionFunction, "int")
vcFunction = vcCM.CodeElementFromFullName("MyClass::MyFunction").Item(1)
vcParameter = vcFunction.AddParameter("MyParameter", "int")
End Sub
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。