Closed szabototo89 closed 10 years ago
Implement Insert method into TextSpan class:
var textSpan = new TextSpan("Hello World!"); textSpan.Insert(position: 1, text: "E") .Insert(position: -1, text: "!");
With passing negative number to position parameter we can insert text at the end of string literal.
TextSpan class has removed from CodeSharper.
Implement Insert method into TextSpan class:
With passing negative number to position parameter we can insert text at the end of string literal.