Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

MethodBuilder::InitLocals Property

 

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.

Namespace:   System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

public:
property bool InitLocals {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true 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
Return to top
Show:
© 2017 Microsoft