System.Runtime.CompilerServices.Closure.Closure C# (CSharp) Method

Closure() public method

Creates an object to hold state of a dynamically generated method.
public Closure ( object constants, object locals ) : System.ComponentModel
constants object The constant values used by the method.
locals object The hoisted local variables from the parent context.
return System.ComponentModel
        public Closure(object[] constants, object[] locals)
        {
            Constants = constants;
            Locals = locals;
        }
    }
Closure