Mono.CSharp.ImplicitDelegateCreation.Create C# (CSharp) Method

Create() static public method

static public Create ( ResolveContext ec, Mono.CSharp.MethodGroupExpr mge, System.TypeSpec target_type, Mono.CSharp.Location loc ) : Mono.CSharp.Expression
ec ResolveContext
mge Mono.CSharp.MethodGroupExpr
target_type System.TypeSpec
loc Mono.CSharp.Location
return Mono.CSharp.Expression
		static public Expression Create (ResolveContext ec, MethodGroupExpr mge,
						 TypeSpec target_type, Location loc)
		{
			ImplicitDelegateCreation d = new ImplicitDelegateCreation (target_type, mge, loc);
			return d.DoResolve (ec);
		}
	}
ImplicitDelegateCreation