GetCustomAttributesData() 공개 메소드

public GetCustomAttributesData ( ) : IList
리턴 IList
		public static IList<CustomAttributeData> __GetCustomAttributes(Assembly assembly, Type attributeType, bool inherit)
		{
			return assembly.GetCustomAttributesData(attributeType);
		}
예제 #2
0
 public static IList <CustomAttributeData> __GetCustomAttributes(Assembly assembly, Type attributeType, bool inherit)
 {
     return(assembly.GetCustomAttributesData(attributeType));
 }
		public static IList<CustomAttributeData> GetCustomAttributes(Assembly assembly)
		{
			return assembly.GetCustomAttributesData(null);
		}
예제 #4
0
 public static IList <CustomAttributeData> GetCustomAttributes(Assembly assembly)
 {
     return(assembly.GetCustomAttributesData(null));
 }