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