Lucene.Net.Analysis.Util.OpenStringBuilder.Set C# (CSharp) Method

Set() public method

public Set ( char arr, int end ) : void
arr char
end int
return void
        public virtual void Set(char[] arr, int end)
        {
            this.buf = arr;
            this.len = end;
        }