AutoOpenExtensionsStringBuilder Module
Extension methods for StringBuilder. Like IndexOf(str), append which returns unit, This module is automatically opened when the namespace Str is opened.
Type extensions
Type extension |
Description
|
Full Usage:
this.Add
Parameters:
string
Modifiers: inline |
|
Full Usage:
this.Add
Parameters:
char
Modifiers: inline |
|
Full Usage:
this.AddLine
Parameters:
string
Modifiers: inline |
|
Full Usage:
this.AddLine
Parameters:
unit
Modifiers: inline |
|
Full Usage:
this.Contains
Parameters:
char
Returns: bool
Modifiers: inline |
|
Full Usage:
this.Contains
Parameters:
string
Returns: bool
Modifiers: inline |
|
Full Usage:
this.IndexOf
Parameters:
char
from : int
Returns: int
|
Like .IndexOf for strings, returns -1 if not found
Extended Type:
|
Full Usage:
this.IndexOf
Parameters:
string
from : int
Returns: int
|
Like .IndexOf for strings, returns -1 if not found Always uses StringComparison.Ordinal
Extended Type:
|
Full Usage:
this.IndexOf
Parameters:
char
Returns: int
Modifiers: inline |
Like .IndexOf for strings, returns -1 if not found
Extended Type:
|
Full Usage:
this.IndexOf
Parameters:
string
Returns: int
Modifiers: inline |
Like .IndexOf for strings, returns -1 if not found always StringComparison.Ordinal
Extended Type:
|