Method | Description | |
---|---|---|
Contains ( this s, char c ) : bool | ||
Contains ( this s, string value ) : bool | ||
EndsWith ( this s, string value ) : bool | ||
IsNullOrEmpty ( this s ) : bool | ||
IsWhiteSpace ( this c ) : bool |
Determines whether a character is whitespace.
|
|
PadLeft ( this s, int count, char pad ) : string | ||
PadRight ( this s, int count, char pad ) : string | ||
Replace ( this s, char oldChar, char newChar ) : string | ||
Replace ( this s, string oldValue, string newValue ) : string | ||
StartsWith ( this s, string value ) : bool |
public static Contains ( this s, char c ) : bool | ||
s | this | |
c | char | |
return | bool |
public static Contains ( this s, string value ) : bool | ||
s | this | |
value | string | |
return | bool |
public static EndsWith ( this s, string value ) : bool | ||
s | this | |
value | string | |
return | bool |
public static IsNullOrEmpty ( this s ) : bool | ||
s | this | |
return | bool |
public static PadLeft ( this s, int count, char pad ) : string | ||
s | this | |
count | int | |
pad | char | |
return | string |
public static PadRight ( this s, int count, char pad ) : string | ||
s | this | |
count | int | |
pad | char | |
return | string |
public static Replace ( this s, char oldChar, char newChar ) : string | ||
s | this | |
oldChar | char | |
newChar | char | |
return | string |
public static Replace ( this s, string oldValue, string newValue ) : string | ||
s | this | |
oldValue | string | |
newValue | string | |
return | string |
public static StartsWith ( this s, string value ) : bool | ||
s | this | |
value | string | |
return | bool |