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