VCLinkerTool.HeapCommitSize 属性

获取或设置一个值,该值指定物理内存中堆分配的合计大小。

命名空间:  Microsoft.VisualStudio.VCProjectEngine
程序集:  Microsoft.VisualStudio.VCProjectEngine(在 Microsoft.VisualStudio.VCProjectEngine.dll 中)

语法

声明
Property HeapCommitSize As Integer
int HeapCommitSize { get; set; }
property int HeapCommitSize {
    int get ();
    void set (int value);
}
abstract HeapCommitSize : int with get, set
function get HeapCommitSize () : int 
function set HeapCommitSize (value : int)

属性值

类型:Int32
指定物理内存中堆分配合计大小的值。

备注

HeapCommitSize 公开 /HEAP(设置堆大小) 链接器选项的功能。

有关如何编译和运行此示例的信息,请参见 如何:编译项目模型扩展性示例代码

示例

下面的示例在集成开发环境 (IDE) 中修改 HeapCommitSize 属性:

' 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 VCLinkerTool
    prj = DTE.Solution.Projects.Item(1).Object
    cfgs = prj.Configurations
    cfg = cfgs.Item(1)
    tool = cfg.Tools("VCLinkerTool")
    tool.HeapCommitSize = 4096
  End Sub
End Module

.NET Framework 安全性

请参阅

参考

VCLinkerTool 接口

Microsoft.VisualStudio.VCProjectEngine 命名空间