ICSharpCode.TextEditor.Document.StringTextBufferStrategy.GetCharAt C# (CSharp) Method

GetCharAt() public method

public GetCharAt ( int offset ) : char
offset int
return char
        public char GetCharAt(int offset)
        {
            if (offset == Length) {
                return '\0';
            }
            return storedText[offset];
        }