C# SByte MaxValue
Description
SByte MaxValue
represents the largest possible value
of SByte. This field is constant.
Syntax
SByte.MaxValue
has the following syntax.
public const sbyte MaxValue
Example
using System;/*from w ww .j a v a2 s. c o m*/
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(sbyte.MaxValue);
}
}
The code above generates the following result.