|
static TimeSpan | TimeSpan (string value) |
| Parses the provided value as a System.TimeSpan using System.TimeSpan.Parse(string,IFormatProvider) with CultureInfo.InvariantCulture More...
|
|
static bool | TryParse (string input, out TimeSpan value) |
| Tries to parse the provided value with TryParse as a System.TimeSpan using CultureInfo.InvariantCulture. More...
|
|
static bool | TryParseExact (string input, string format, TimeSpanStyles timeSpanStyle, out TimeSpan value) |
| Tries to parse the provided value with TryParse as a System.TimeSpan, format string, TimeSpanStyles, and using CultureInfo.InvariantCulture More...
|
|
static DateTime | DateTime (string value) |
| Parses the provided value as a System.DateTime using System.DateTime.Parse(string,IFormatProvider) with CultureInfo.InvariantCulture More...
|
|
static DateTime | DateTimeExact (string value, string format) |
| Parses the provided value as a System.DateTime using System.DateTime.ParseExact(string,string,IFormatProvider) with the specified format and CultureInfo.InvariantCulture More...
|
|
static DateTime | DateTimeExact (string value, string format, DateTimeStyles dateTimeStyles) |
| Parses the provided value as a System.DateTime using System.DateTime.ParseExact(string,string,IFormatProvider) with the specified format , dateTimeStyles and CultureInfo.InvariantCulture More...
|
|
static bool | TryParse (string input, DateTimeStyles dateTimeStyle, out System.DateTime value) |
| Tries to parse the provided value with TryParse as a System.DateTime using the specified dateTimeStyle and CultureInfo.InvariantCulture. More...
|
|
static bool | TryParseExact (string input, string format, DateTimeStyles dateTimeStyle, out System.DateTime value) |
| Tries to parse the provided value with TryParse as a System.DateTime using the specified dateTimeStyle , the format format , and CultureInfo.InvariantCulture. More...
|
|
static double | Double (string value) |
| Parses the provided value as a double using CultureInfo.InvariantCulture More...
|
|
static bool | TryParse (string input, NumberStyles numberStyle, out double value) |
| Tries to parse the provided value with TryParse as a double using the specified numberStyle and CultureInfo.InvariantCulture. More...
|
|
static decimal | Decimal (string value) |
| Parses the provided value as a decimal using CultureInfo.InvariantCulture More...
|
|
static decimal | Decimal (string value, NumberStyles numberStyles) |
| Parses the provided value as a decimal using the specified numberStyles and CultureInfo.InvariantCulture More...
|
|
static bool | TryParse (string input, NumberStyles numberStyle, out decimal value) |
| Tries to parse the provided value with TryParse as a decimal using the specified numberStyle and CultureInfo.InvariantCulture. More...
|
|
static int | Int (string value) |
| Parses the provided value as a int using CultureInfo.InvariantCulture More...
|
|
static bool | TryParse (string input, NumberStyles numberStyle, out int value) |
| Tries to parse the provided value with TryParse as a int using the specified numberStyle and CultureInfo.InvariantCulture. More...
|
|
static long | Long (string value) |
| Parses the provided value as a long using CultureInfo.InvariantCulture More...
|
|
static long | Long (string value, NumberStyles numberStyles) |
| Parses the provided value as a long using CultureInfo.InvariantCulture and the specified numberStyles More...
|
|
static bool | TryParse (string input, NumberStyles numberStyle, out long value) |
| Tries to parse the provided value with TryParse as a long using the specified numberStyle and CultureInfo.InvariantCulture. More...
|
|
static T | Enum< T > (string input, bool ignoreCase=true) |
| Parses the provided value as a an enumeration type T More...
|
|
static bool | TryParse< T > (string input, out T value, bool ignoreCase=true) |
| Parses the provided value as a an enumeration type T More...
|
|
Provides methods for parsing strings using CultureInfo.InvariantCulture
Definition at line 24 of file Parse.cs.