Decimal.MinValue Field: represents the smallest possible value of Decimal.
using System; class DecimalFieldsDemo { public static void Main( ) { Console.WriteLine(Decimal.MinValue ); } }