Dev2.Common.Dev2TokenOp.OpLength C# (CSharp) Method

OpLength() public method

public OpLength ( ) : int
return int
        public int OpLength()
        {
            int result = _tokenParts.Length;

            if (_include)
            {
                result -= _tokenParts.Length;
            }

            return result;
        }