Mono.Cecil.Mixin.IsVarArg C# (CSharp) Method

IsVarArg() public static method

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