C# Class PRI.ProductivityExtensions.StringBuilderExtensions.StringBuilderable

Class that contains extension methods that extend StringBuilder
Mostra file Open project: peteraritchie/ProductivityExtensions

Public Methods

Method Description
CopyTo ( this stringbuilder, Int32 sourceIndex, Char destination ) : void

Extends CopyTo so that buffer offset of 0 and call to Array.Length are not needed. stringbuilder.CopyTo(sourceIndex, destination);

Method Details

CopyTo() public static method

Extends CopyTo so that buffer offset of 0 and call to Array.Length are not needed. stringbuilder.CopyTo(sourceIndex, destination);
public static CopyTo ( this stringbuilder, Int32 sourceIndex, Char destination ) : void
stringbuilder this
sourceIndex System.Int32
destination Char
return void