[]
Convert a value to decimal value. The converted value is matched with IsNumber function.
public static bool TryConvert(object value, ref decimal decimalValue)
Public Shared Function TryConvert(value As Object, ByRef decimalValue As Decimal) As Boolean
| Type | Name | Description |
|---|---|---|
| object | value | The value. |
| decimal | decimalValue | The decimal value. |
| Type | Description |
|---|---|
| bool |
Convert a value to double value. The converted value is matched with IsNumber function.
public static bool TryConvert(object value, ref double doubleValue)
Public Shared Function TryConvert(value As Object, ByRef doubleValue As Double) As Boolean
| Type | Name | Description |
|---|---|---|
| object | value | The value. |
| double | doubleValue | The double value. |
| Type | Description |
|---|---|
| bool |