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