Aracılığıyla paylaş


VCCLCompilerTool.EnableIntrinsicFunctions Özellik

Alır veya iç işlevlerin daha hızlı, ancak büyük olasılıkla daha büyük kod üretmek için kullanılıp kullanılmayacağını gösteren bir değeri ayarlar.EnableIntrinsicFunctionsDerleyici 's iþlevselliði /Oi (iç işlevlerin Oluştur) seçeneği.

Ad alanı:  Microsoft.VisualStudio.VCProjectEngine
Derleme:  Microsoft.VisualStudio.VCProjectEngine (Microsoft.VisualStudio.VCProjectEngine.dll içinde)

Sözdizimi

'Bildirim
Property EnableIntrinsicFunctions As Boolean
bool EnableIntrinsicFunctions { get; set; }
property bool EnableIntrinsicFunctions {
    bool get ();
    void set (bool value);
}
abstract EnableIntrinsicFunctions : bool with get, set
function get EnableIntrinsicFunctions () : boolean
function set EnableIntrinsicFunctions (value : boolean)

Özellik Değeri

Tür: System.Boolean
true Eğer, iç işlevlerini kullanmak; Aksi halde, false.

Örnekler

Bkz: Nasıl yapılır: proje modeli genişletilebilirlik amacıyla örnek kodu derleyin derlemek ve bu örnek çalıştırma hakkında bilgi için.

Aşağıdaki örnek değiştirir EnableIntrinsicFunctions tümleşik geliştirme ortamını (IDE) özelliği:

' 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.EnableIntrinsicFunctions = True
    End Sub
End Module

.NET Framework Güvenliği

Ayrıca bkz.

Başvuru

VCCLCompilerTool Arabirim

Microsoft.VisualStudio.VCProjectEngine Ad Alanı