System.MethodReflectionLibrary.GetMethodsWithAttribute C# (CSharp) Méthode

GetMethodsWithAttribute() public static méthode

public static GetMethodsWithAttribute ( Type type ) : IEnumerable
type Type
Résultat 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