System.Reflection.DynamicMethodCompiler.CreateDynamicSetMethod C# (CSharp) Method

CreateDynamicSetMethod() private static method

Creates the dynamic set method.
private static CreateDynamicSetMethod ( Type type ) : DynamicMethod
type Type The type.
return System.Reflection.Emit.DynamicMethod
        private static DynamicMethod CreateDynamicSetMethod(Type type)
        {
            return new DynamicMethod("DynamicSet", typeof(void), new[] {typeof(object), typeof(object)}, type, true);
        }