MethodBuilder.InitLocals Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a Boolean value that specifies whether the local variables in this method are zero initialized. The default value of this property is true
.
public:
property bool InitLocals { bool get(); void set(bool value); };
public bool InitLocals { get; set; }
member this.InitLocals : bool with get, set
Public Property InitLocals As Boolean
Property Value
true
if the local variables in this method should be zero initialized; otherwise false
.
Exceptions
For the current method, the IsGenericMethod property is true
, but the IsGenericMethodDefinition property is false
. (Get or set.)
Remarks
If this property is set to true
, the emitted MSIL includes initialization of local variables. If it is set to false
, local variables are not initialized and the generated code is unverifiable.