Class MaybeStringExtensions
Provides extension methods to System.String for working with Maybe<T> values;
Inheritance
Inherited Members
Namespace: MaybeSharp.Extensions
Assembly: cs.temp.dll.dll
Syntax
public static class MaybeStringExtensions
Methods
| Name | Description |
|---|---|
| TryParseBoolean(String) | Attempts to parse a string to a Maybe<T> of System.Boolean. If the parse fails (or |
| TryParseByte(String) | Attempts to parse a string to a Maybe<T> of System.Byte. If the parse fails (or |
| TryParseChar(String) | Attempts to parse a string to a Maybe<T> of System.Char. If the parse fails (or |
| TryParseDateTime(String) | Attempts to parse a string to a Maybe<T> of System.DateTime. If the parse fails (or |
| TryParseDateTimeOffset(String) | Attempts to parse a string to a Maybe<T> of System.DateTimeOffset. If the parse fails (or |
| TryParseDecimal(String) | Attempts to parse a string to a Maybe<T> of System.Decimal. If the parse fails (or |
| TryParseDouble(String) | Attempts to parse a string to a Maybe<T> of System.Double. If the parse fails (or |
| TryParseInt(String) | Attempts to parse a string to a Maybe<T> of System.Int32. If the parse fails (or |
| TryParseInt16(String) | Attempts to parse a string to a Maybe<T> of System.Int16. If the parse fails (or |
| TryParseInt64(String) | Attempts to parse a string to a Maybe<T> of System.Int64. If the parse fails (or |
| TryParseSingle(String) | Attempts to parse a string to a Maybe<T> of System.Single. If the parse fails (or |