Microsoft.Languages.Editor.Extensions.TextChange.TextChange C# (CSharp) Method

TextChange() public method

public TextChange ( int position, int length, string newText ) : System
position int
length int
newText string
return System
        public TextChange(int position, int length, string newText) {
            Position = position;
            Length = length;
            NewText = newText ?? string.Empty;
        }