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;
		}