VCLinkerTool.BaseAddress Property
Gets or sets a base address for the program, overriding the default location for an .exe file (at 0x400000) or a DLL (at 0x10000000).
Namespace: Microsoft.VisualStudio.VCProjectEngine
Assembly: Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)
Syntax
'Declaration
Property BaseAddress As String
'Usage
Dim instance As VCLinkerTool
Dim value As String
value = instance.BaseAddress
instance.BaseAddress = value
string BaseAddress { get; set; }
property String^ BaseAddress {
String^ get ();
void set (String^ value);
}
function get BaseAddress () : String
function set BaseAddress (value : String)
Property Value
Type: System.String
A base address for the program.
Remarks
BaseAddress exposes the functionality of the /BASE (Base Address) linker option.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.