- int ParseInt(string)
Parses string to System.int
System.int of the string. returns 0 if string is null or not a number.
- Int32 ParseInt32(string)
Parses string to System.Int32
System.Int32 of the string. returns 0 if string is null or not a number.
- Int64 ParseInt64(string)
Parses string to System.Int64
System.Int64 of the string. returns 0 if string is null or not a number.
- short ParseShort(string)
Parses string to System.short
System.short of the string. returns 0 if string is null or not a number.
- long ParseLong(string)
Parses string to System.long
System.long of the string. returns 0 if string is null or not a number.
- double ParseDouble(string)
Parses string to System.double
System.double of the string. returns 0 if string is null or not a number.
- decimal ParseDecimal(string)
Parses string to System.decimal
System.decimal of the string. returns 0 if string is null or not a number.
- bool ParseBool(string)
Value can be 1, 0, true or false as strings
- Boolean ParseBoolean(string)
Value can be 1, 0, true or false as strings
- DateTime ParseDateTime(string)
Parses string to System.DateTime
- string ToNullIfEmpty(string)
Checks for String.Empty. If true than sets it to null.
- string ToEmptyIfNull(string)
Checks for null. If true than sets it to String.Empty