共用方式為


VCCodeModel.CodeElementFromFullName2 方法

取得物件的指定程式碼項目集合。它與 CodeElementFromFullName 相同,不同處在於它會在查閱期間忽略命名空間。

命名空間:  Microsoft.VisualStudio.VCCodeModel
組件:  Microsoft.VisualStudio.VCCodeModel (在 Microsoft.VisualStudio.VCCodeModel.dll 中)

語法

'宣告
Function CodeElementFromFullName2 ( _
    Name As String _
) As CodeElements
CodeElements CodeElementFromFullName2(
    string Name
)
CodeElements^ CodeElementFromFullName2(
    [InAttribute] String^ Name
)
abstract CodeElementFromFullName2 : 
        Name:string -> CodeElements 
function CodeElementFromFullName2(
    Name : String
) : CodeElements

參數

  • Name
    型別:System.String
    必要項。要擷取之項目的完整名稱。

傳回值

型別:EnvDTE.CodeElements
CodeElements 集合。

範例

提供下列的程式碼:

[Visual C++]
class X {};
namespace NS1 {
    class X {};
    namespace NS2 {
        class X {};
    }
}

a call to VCCodeModel.CodeElementFromFullName2("X") yields {X; NS1::X; NS1::NS2::X}.

.NET Framework 安全性

請參閱

參考

VCCodeModel 介面

Microsoft.VisualStudio.VCCodeModel 命名空間