System.Reflection.MonoParameterInfo.GetOptionalCustomModifiers C# (CSharp) 메소드

GetOptionalCustomModifiers() 공개 메소드

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