System.Reflection.RuntimeReflectionExtensions.GetMethodInfo C# (CSharp) Метод

GetMethodInfo() публичный статический Метод

public static GetMethodInfo ( this del ) : MethodInfo
del this
Результат MethodInfo
		public static MethodInfo GetMethodInfo (this Delegate del)
		{
			if (del == null)
				throw new ArgumentNullException ("del");

			return del.Method;
		}