System.MethodReflectionLibrary.GetMethodsWithAttribute C# (CSharp) Метод

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

public static GetMethodsWithAttribute ( Type type ) : IEnumerable
type Type
Результат IEnumerable
        public static IEnumerable<MethodInfo> GetMethodsWithAttribute<T>(this Type type)
            where T : Attribute =>
            type
                .GetMethodsWithAttribute<T>(ReflectionLibrary.STATIC_MEMBER_BINDING_FLAGS);

Same methods

MethodReflectionLibrary::GetMethodsWithAttribute ( IReflect t, BindingFlags flags ) : IEnumerable
MethodReflectionLibrary::GetMethodsWithAttribute ( object o ) : IEnumerable