| BinarySizeParse Method (String) |
Converts the string representation of a byte size into a
BinarySize structure.
Namespace:
Ookii.Jumbo
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public static BinarySize Parse(
string value
)
Public Shared Function Parse (
value As String
) As BinarySize
public:
static BinarySize Parse(
String^ value
)
static member Parse :
value : string -> BinarySize
Parameters
- value
- Type: SystemString
A string containing a number to convert. This string may use a suffix indicating a binary multiple (B, KB, KiB, K, MB, MiB, M, GB, GiB, G, TB, TiB, T, PB, PiB, or P).
Return Value
Type:
BinarySizeA
BinarySize instance that is the equivalent of
value.
See Also