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