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

CreateDynamicGetMethod() private static method

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