메소드 | 설명 | |
---|---|---|
EndsWith ( this s, char c ) : bool |
Checks if the given string ends with the given character
|
|
StartsWith ( this s, char c ) : bool |
Checks if the given string ends with the given character
|
|
TryToBool ( this value, bool &result ) : bool |
Tries to convert this string into a bool.
|
|
TryToByte ( this value, byte &result ) : bool |
Tries to convert this string into a byte.
|
|
TryToFloat ( this value, float &result ) : bool |
Tries to convert this string into a float.
|
|
TryToInt ( this value, int &result ) : bool |
Tries to convert this string into an int.
|
public static TryToBool ( this value, bool &result ) : bool | ||
value | this | The string to convert. |
result | bool | The parsed bool. |
리턴 | bool |
public static TryToByte ( this value, byte &result ) : bool | ||
value | this | The string to convert. |
result | byte | The parsed byte. |
리턴 | bool |
public static TryToFloat ( this value, float &result ) : bool | ||
value | this | The string to convert. |
result | float | The parsed float. |
리턴 | bool |
public static TryToInt ( this value, int &result ) : bool | ||
value | this | The string to convert. |
result | int | The parsed int. |
리턴 | bool |