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

GetMethodsWithAttribute() public static méthode

public static GetMethodsWithAttribute ( object o ) : IEnumerable
o object
Résultat IEnumerable
        public static IEnumerable<MethodInfo> GetMethodsWithAttribute<T>(this object o)
            where T : Attribute =>
            o
                .GetType()
                .GetMethodsWithAttribute<T>(ReflectionLibrary.INSTANCE_MEMBER_BINDING_FLAGS);

Same methods

MethodReflectionLibrary::GetMethodsWithAttribute ( IReflect t, BindingFlags flags ) : IEnumerable
MethodReflectionLibrary::GetMethodsWithAttribute ( Type type ) : IEnumerable