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

GetMethodInfo() public static method

public static GetMethodInfo ( this del ) : MethodInfo
del this
return MethodInfo
		public static MethodInfo GetMethodInfo (this Delegate del)
		{
			if (del == null)
				throw new ArgumentNullException ("del");

			return del.Method;
		}