System.Reflection.DynamicMethodCompiler.CreateDynamicSetMethod C# (CSharp) 메소드

CreateDynamicSetMethod() 개인적인 정적인 메소드

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