VCLinkerTool.HeapCommitSize Propriedade

Definição

Obtém ou define um valor que especifica o tamanho de alocação de heap total na memória física.

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

Valor da propriedade

Int32

Um valor que especifica o tamanho de alocação de heap total na memória física.

Atributos

Exemplos

O exemplo a seguir modifica a HeapCommitSize propriedade no ambiente de desenvolvimento integrado (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  

Comentários

HeapCommitSize expõe a funcionalidade da opção de vinculador /heap (definir tamanho do heap) .

Aplica-se a