System.Reflection.MonoMethod.GetCustomAttributes C# (CSharp) Method

GetCustomAttributes() public method

public GetCustomAttributes ( bool inherit ) : object[]
inherit bool
return object[]
		public override object[] GetCustomAttributes( bool inherit) {
			return MonoCustomAttrs.GetCustomAttributes (this, inherit);
		}
		public override object[] GetCustomAttributes( Type attributeType, bool inherit) {

Same methods

MonoMethod::GetCustomAttributes ( Type attributeType, bool inherit ) : object[]