Partager via


VCProject.RootNamespace, propriété

Obtient l'espace de noms racine pour le projet spécifié.

Espace de noms :  Microsoft.VisualStudio.VCProjectEngine
Assembly :  Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)

Syntaxe

'Déclaration
Property RootNamespace As String
string RootNamespace { get; set; }
property String^ RootNamespace {
    String^ get ();
    void set (String^ value);
}
abstract RootNamespace : string with get, set
function get RootNamespace () : String 
function set RootNamespace (value : String)

Valeur de propriété

Type : String
Espace de noms racine pour le projet spécifié.RootNamespace permet de déterminer le nom approprié pour les DLL de ressources managées.

Exemples

Consultez Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour savoir comment compiler et exécuter cet exemple.

' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a 
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim sln As Solution
        Dim prj As VCProject
        prj = DTE.Solution.Item(1).Object
        MsgBox("Root namespace " & prj.RootNamespace)
    End Sub
End Module

Sécurité .NET Framework

Voir aussi

Référence

VCProject Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms