System.Reflection.RuntimeReflectionExtensions.GetRuntimeMethods C# (CSharp) 메소드

GetRuntimeMethods() 공개 정적인 메소드

public static GetRuntimeMethods ( this type ) : IEnumerable
type this
리턴 IEnumerable
		public static IEnumerable<MethodInfo> GetRuntimeMethods (this Type type)
		{
			if (type == null)
				throw new ArgumentNullException ("type");

			return type.GetMethods (AllMembersBindingFlags);
		}