'?'
public Limit(Number offset, ParamMarker sizeP) { if (offset == null) { throw new ArgumentException(); } if (sizeP == null) { throw new ArgumentException(); } this.offset = offset; size = null; offsetP = null; this.sizeP = sizeP; }
public Limit(ParamMarker offsetP, ParamMarker sizeP) { if (offsetP == null) { throw new ArgumentException(); } if (sizeP == null) { throw new ArgumentException(); } offset = null; size = null; this.offsetP = offsetP; this.sizeP = sizeP; }
public Limit(Number offset, Number size) { if (offset == null) { throw new ArgumentException(); } if (size == null) { throw new ArgumentException(); } this.offset = offset; this.size = size; offsetP = null; sizeP = null; }
protected virtual ParamMarker CreateParam(int index) { var param = new ParamMarker(index); param.SetCacheEvalRst(cacheEvalRst); return param; }
public virtual void Visit(ParamMarker node) { }