C# Convert ToSByte(String)
Description
Convert ToSByte(String)
converts the specified string
representation of a number to an equivalent 8-bit signed integer.
Syntax
Convert.ToSByte(String)
has the following syntax.
[CLSCompliantAttribute(false)]
public static sbyte ToSByte(
string value
)
Parameters
Convert.ToSByte(String)
has the following parameters.
value
- A string that contains the number to convert.
Returns
Convert.ToSByte(String)
method returns An 8-bit signed integer that is equivalent to the number in value, or 0 (zero)
if value is null.
Example
//from w w w . jav a2 s.c om
using System;
public class MainClass{
public static void Main(String[] argv){
Console.WriteLine(Convert.ToSByte("123"));
}
}
The code above generates the following result.