Conversions.ToShort Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts the specified object to a Short
value.
Overloads
ToShort(Object) |
Converts an object to a |
ToShort(String) |
Converts a string to a |
ToShort(Object)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
Converts an object to a Short
value.
public:
static short ToShort(System::Object ^ Value);
public static short ToShort (object Value);
public static short ToShort (object? Value);
static member ToShort : obj -> int16
Public Shared Function ToShort (Value As Object) As Short
Parameters
- Value
- Object
The object to convert.
Returns
The Short
value of the object.
Applies to
ToShort(String)
- Source:
- Conversions.vb
- Source:
- Conversions.vb
- Source:
- Conversions.vb
Converts a string to a Short
value.
public:
static short ToShort(System::String ^ Value);
public static short ToShort (string Value);
public static short ToShort (string? Value);
static member ToShort : string -> int16
Public Shared Function ToShort (Value As String) As Short
Parameters
- Value
- String
The string to convert.
Returns
The Short
value of the string.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.