System.Reflection.MonoGenericClass.GetCustomAttributes C# (CSharp) Метод

GetCustomAttributes() публичный Метод

public GetCustomAttributes ( Type attributeType, bool inherit ) : object[]
attributeType Type
inherit bool
Результат object[]
		public override object [] GetCustomAttributes (Type attributeType, bool inherit)
		{
			if (!IsCompilerContext)
				throw new NotSupportedException ();
			return generic_type.GetCustomAttributes (attributeType, inherit);
		}
	}

Same methods

MonoGenericClass::GetCustomAttributes ( bool inherit ) : object[]