Partager via


VCCLCompilerTool.DefaultCharIsUnsigned, propriété

Obtient ou définit le type de caractère par défaut non signé. DefaultCharIsUnsigned expose les fonctions de l'option /J (Type de caractère par défaut non signé) du compilateur.

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

Syntaxe

'Déclaration
Property DefaultCharIsUnsigned As Boolean
bool DefaultCharIsUnsigned { get; set; }
property bool DefaultCharIsUnsigned {
    bool get ();
    void set (bool value);
}
abstract DefaultCharIsUnsigned : bool with get, set
function get DefaultCharIsUnsigned () : boolean 
function set DefaultCharIsUnsigned (value : boolean)

Valeur de propriété

Type : Boolean
true si le type de caractère par défaut est non signé ; sinon, false.

Exemples

Consultez Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour plus d'informations sur la compilation et l'exécution de cet exemple.

L'exemple suivant modifie la propriété d'DefaultCharIsUnsigned dans l'environnement de développement intégré (IDE) :

' add reference to Microsoft.VisualStudio.VCProjectEngine.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim cfgs, tools As IVCCollection
        Dim cfg As VCConfiguration
        Dim tool As VCCLCompilerTool
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.Tools("VCCLCompilerTool")
        tool.DefaultCharIsUnsigned = True
    End Sub
End Module

Sécurité .NET Framework

Voir aussi

Référence

VCCLCompilerTool Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms