BcsResolver.Tokenizer.TextRange.TextRange C# (CSharp) 메소드

TextRange() 공개 메소드

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