C# Class FreakySources.StringBuilderExtensions

Show file Open project: KvanTTT/Freaky-Sources

Public Methods

Method Description
GetSubstring ( this sb, int ind, int length ) : string
IndexOf ( this sb, string value, int startIndex, bool ignoreCase = false ) : int
Remove ( this sb, int ind ) : void
Substring ( this sb, int ind ) : void
Substring ( this sb, int ind, int length ) : void

Method Details

GetSubstring() public static method

public static GetSubstring ( this sb, int ind, int length ) : string
sb this
ind int
length int
return string

IndexOf() public static method

public static IndexOf ( this sb, string value, int startIndex, bool ignoreCase = false ) : int
sb this
value string
startIndex int
ignoreCase bool
return int

Remove() public static method

public static Remove ( this sb, int ind ) : void
sb this
ind int
return void

Substring() public static method

public static Substring ( this sb, int ind ) : void
sb this
ind int
return void

Substring() public static method

public static Substring ( this sb, int ind, int length ) : void
sb this
ind int
length int
return void