Method | Description | |
---|---|---|
IsValidByte ( this strValue ) : bool |
Test if string value is a valid byte value
|
|
IsValidByte ( this strValue, NumberStyles numberStyle, |
Test if string value is a valid byte value
|
|
TryParseByte ( this strValue ) : byte |
Convert string byte value to byte value
|
|
TryParseByte ( this strValue, NumberStyles numberStyle, |
Convert string byte value to byte value
|
|
TryParseByte ( this strValue, byte defaultValue ) : byte |
Convert string byte value to byte value Set default value on invalid convertion
|
|
TryParseByte ( this strValue, byte defaultValue, NumberStyles numberStyle, |
Convert string byte value to byte value Set default value on invalid convertion
|
|
TryParseByte ( this strValue, byte defaultValue, bool allowZero ) : byte |
Convert string byte value to byte value Set default value on invalid convertion Allow 0 as converted value flag
|
|
TryParseByte ( this strValue, byte defaultValue, bool allowZero, NumberStyles numberStyle, |
Convert string byte value to byte value Set default value on invalid convertion Allow 0 as converted value flag
|
|
TryParseByteArray ( this strValue ) : byte[] |
Parse string array in byte array
|
|
TryParseByteArray ( this strValue, NumberStyles numberStyle, |
Parse string array in byte array
|
|
TryParseByteArray ( this strValue, byte defaultValue ) : byte[] |
Parse string array in byte array
|
|
TryParseByteArray ( this strValue, byte defaultValue, NumberStyles numberStyle, |
Parse string array in byte array
|
|
TryParseByteArray ( this strValue, byte defaultValue, bool allowDefaultConversion ) : byte[] |
Parse string array in byte array
|
|
TryParseByteArray ( this strValue, byte defaultValue, bool allowDefaultConversion, NumberStyles numberStyle, |
Parse string array in byte array
|
public static IsValidByte ( this strValue ) : bool | ||
strValue | this | string value |
return | bool |
public static IsValidByte ( this strValue, NumberStyles numberStyle, |
||
strValue | this | string value |
numberStyle | NumberStyles | number style to convert |
culture | culture origin | |
return | bool |
public static TryParseByte ( this strValue ) : byte | ||
strValue | this | string value |
return | byte |
public static TryParseByte ( this strValue, NumberStyles numberStyle, |
||
strValue | this | string value |
numberStyle | NumberStyles | number style to convert |
culture | culture origin | |
return | byte |
public static TryParseByte ( this strValue, byte defaultValue ) : byte | ||
strValue | this | string value |
defaultValue | byte | default value |
return | byte |
public static TryParseByte ( this strValue, byte defaultValue, NumberStyles numberStyle, |
||
strValue | this | string value |
defaultValue | byte | default value |
numberStyle | NumberStyles | number style to convert |
culture | culture origin | |
return | byte |
public static TryParseByte ( this strValue, byte defaultValue, bool allowZero ) : byte | ||
strValue | this | string value |
defaultValue | byte | default value |
allowZero | bool | Allow 0 |
return | byte |
public static TryParseByte ( this strValue, byte defaultValue, bool allowZero, NumberStyles numberStyle, |
||
strValue | this | string value |
defaultValue | byte | default value |
allowZero | bool | Allow 0 |
numberStyle | NumberStyles | number style to convert |
culture | culture origin | |
return | byte |
public static TryParseByteArray ( this strValue ) : byte[] | ||
strValue | this | string to parse |
return | byte[] |
public static TryParseByteArray ( this strValue, NumberStyles numberStyle, |
||
strValue | this | string to parse |
numberStyle | NumberStyles | number style to convert |
culture | culture origin | |
return | byte[] |
public static TryParseByteArray ( this strValue, byte defaultValue ) : byte[] | ||
strValue | this | string to parse |
defaultValue | byte | default value when default tryparse |
return | byte[] |
public static TryParseByteArray ( this strValue, byte defaultValue, NumberStyles numberStyle, |
||
strValue | this | string to parse |
defaultValue | byte | default value when default tryparse |
numberStyle | NumberStyles | number style to convert |
culture | culture origin | |
return | byte[] |
public static TryParseByteArray ( this strValue, byte defaultValue, bool allowDefaultConversion ) : byte[] | ||
strValue | this | string to parse |
defaultValue | byte | default value when default tryparse |
allowDefaultConversion | bool | Allow default tryparse values |
return | byte[] |
public static TryParseByteArray ( this strValue, byte defaultValue, bool allowDefaultConversion, NumberStyles numberStyle, |
||
strValue | this | string to parse |
defaultValue | byte | default value when default tryparse |
allowDefaultConversion | bool | Allow default tryparse values |
numberStyle | NumberStyles | number style to convert |
culture | culture origin | |
return | byte[] |