Lucene.Net.Analysis.Tokenattributes.CharTermAttribute.CopyTo C# (CSharp) Method

CopyTo() public method

public CopyTo ( Attribute target ) : void
target System.Attribute
return void
        public override void CopyTo(Attribute target)
        {
            CharTermAttribute t = (CharTermAttribute)target;
            t.CopyBuffer(TermBuffer, 0, TermLength);
        }
    }