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

GetRuntimeMethods() public static method

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

			return type.GetMethods (AllMembersBindingFlags);
		}