MethodBuilder::InitLocals Property
.NET Framework (current version)
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.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System::Booleantrue if the local variables in this method should be zero initialized; otherwise false.
| Exception | Condition |
|---|---|
| InvalidOperationException | For the current method, the IsGenericMethod property is true, but the IsGenericMethodDefinition property is false. (Get or set.) |
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.
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Available since 1.1
Silverlight
Available since 2.0
Show: