System.Reflection.MonoParameterInfo.GetOptionalCustomModifiers C# (CSharp) Method

GetOptionalCustomModifiers() public method

public GetOptionalCustomModifiers ( ) : Type[]
return Type[]
		Type[] GetOptionalCustomModifiers () {
			Type[] types = GetTypeModifiers (true);
			if (types == null)
				return Type.EmptyTypes;
			return types;
		}