Mono.Cecil.Mixin.IsVarArg C# (CSharp) 메소드

IsVarArg() 공개 정적인 메소드

public static IsVarArg ( this self ) : bool
self this
리턴 bool
        public static bool IsVarArg(this IMethodSignature self)
        {
            return (self.CallingConvention & MethodCallingConvention.VarArg) != 0;
        }