C# Convert ToInt32(SByte)
Description
Convert ToInt32(SByte)
converts the value of the specified
8-bit signed integer to the equivalent 32-bit signed integer.
Syntax
Convert.ToInt32(SByte)
has the following syntax.
[CLSCompliantAttribute(false)]
public static int ToInt32(
sbyte value
)
Parameters
Convert.ToInt32(SByte)
has the following parameters.
value
- The 8-bit signed integer to convert.
Returns
Convert.ToInt32(SByte)
method returns A 8-bit signed integer that is equivalent to value.
Example
//www . j av a 2 s. co m
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(Convert.ToInt32((SByte)123));
}
}
The code above generates the following result.