BcsResolver.Tokenizer.TextRange.TextRange C# (CSharp) Method

TextRange() public method

public TextRange ( int startPosition, int length ) : System
startPosition int
length int
return System
        public TextRange(int startPosition, int length)
        {
            StartPosition = startPosition;
            Length = length;
        }
    }
TextRange