Method | Description | |
---|---|---|
CoalesceString ( this original ) : string |
Coalesces a string.
|
|
ConcatStrings ( this |
Concatenates a number of strings with given separators.
|
|
EqualsAsLocation ( this location1, string location2 ) : bool |
Compare two location strings.
|
|
EqualsInsensitively ( this original, string otherString ) : bool |
Compares two string values insensitively.
|
|
IsDateTime ( this source, string format, DateTimeStyles styles ) : bool |
Determines whether the specified source string is a valid date time.
|
|
IsDecimal ( this source, NumberStyles allowedNumberStyle ) : bool |
Determines whether the specified source string is a valid decimal.
|
|
SplitRemoveEmpty ( this source ) : string[] |
Splits the string with given separators and removes empty entries.
|
|
StartsWithInsensitively ( this original, string otherString ) : bool |
Compares two string values insensitively.
|
|
ToNormalizedLocation ( this location ) : string |
Normalize a location string.
|
public static CoalesceString ( this original ) : string | ||
original | this | The original string. |
return | string |
public static ConcatStrings ( this |
||
source | this |
The source strings. |
separator | string | The separator string. |
return | string |
public static EqualsAsLocation ( this location1, string location2 ) : bool | ||
location1 | this | The first location string. |
location2 | string | The second location string. |
return | bool |
public static EqualsInsensitively ( this original, string otherString ) : bool | ||
original | this | The original string. |
otherString | string | The other string. |
return | bool |
public static IsDateTime ( this source, string format, DateTimeStyles styles ) : bool | ||
source | this | The source. |
format | string | The format. |
styles | DateTimeStyles | The styles. |
return | bool |
public static IsDecimal ( this source, NumberStyles allowedNumberStyle ) : bool | ||
source | this | The source. |
allowedNumberStyle | NumberStyles | The allowed number style. |
return | bool |
public static SplitRemoveEmpty ( this source ) : string[] | ||
source | this | The source string. |
return | string[] |
public static StartsWithInsensitively ( this original, string otherString ) : bool | ||
original | this | The original string. |
otherString | string | The other string. |
return | bool |
public static ToNormalizedLocation ( this location ) : string | ||
location | this | The location string. |
return | string |