System.Reflection.Emit.MethodOnTypeBuilderInst.MethodOnTypeBuilderInst C# (CSharp) Method

MethodOnTypeBuilderInst() private method

private MethodOnTypeBuilderInst ( MethodOnTypeBuilderInst gmd, Type typeArguments ) : System
gmd MethodOnTypeBuilderInst
typeArguments System.Type
return System
		internal MethodOnTypeBuilderInst (MethodOnTypeBuilderInst gmd, Type[] typeArguments)
		{
			this.instantiation = gmd.instantiation;
			this.mb = gmd.mb;
			this.method_arguments = new Type [typeArguments.Length];
			typeArguments.CopyTo (this.method_arguments, 0);
			this.generic_method_definition = gmd;
		}
		//

Same methods

MethodOnTypeBuilderInst::MethodOnTypeBuilderInst ( MonoGenericClass instantiation, MethodBuilder mb ) : System