VCLinkerTool.HeapCommitSize Свойство

Определение

Получает или задает значение, указывающее общий размер физической памяти, выделяемой для кучи.

public:
 property int HeapCommitSize { int get(); void set(int value); };
public:
 property int HeapCommitSize { int get(); void set(int value); };
[System.Runtime.InteropServices.DispId(67)]
public int HeapCommitSize { [System.Runtime.InteropServices.DispId(67)] get; [System.Runtime.InteropServices.DispId(67)] set; }
[<System.Runtime.InteropServices.DispId(67)>]
[<get: System.Runtime.InteropServices.DispId(67)>]
[<set: System.Runtime.InteropServices.DispId(67)>]
member this.HeapCommitSize : int with get, set
Public Property HeapCommitSize As Integer

Значение свойства

Int32

Значение, указывающее общий размер физической памяти, выделяемой для кучи.

Атрибуты

Примеры

В следующем примере изменяется HeapCommitSize свойство в интегрированной среде разработки (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 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  

Комментарии

HeapCommitSize предоставляет функциональные возможности параметра компоновщика /heap (установка размера кучи) .

Применяется к