Mono.Cecil.Fluent.TypeDefinitionExtensions.ToDynamicType C# (CSharp) Method

ToDynamicType() public static method

public static ToDynamicType ( this that ) : Type
that this
return System.Type
		public static Type ToDynamicType(this TypeDefinition that)
		{
			var ret = new DynamicTypeBuilder(that).Process();
			return ret;
		}
	}
TypeDefinitionExtensions