System.Reflection.RuntimeReflectionExtensions.GetRuntimeMethod C# (CSharp) Method

GetRuntimeMethod() public static method

public static GetRuntimeMethod ( this type, string name, Type parameters ) : MethodInfo
type this
name string
parameters Type
return MethodInfo
		public static MethodInfo GetRuntimeMethod (this Type type, string name, Type[] parameters)
		{
			if (type == null)
				throw new ArgumentNullException ("type");

			return type.GetMethod (name, parameters);
		}