Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-382.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ac9678ddf7d02013ba09644a3b406c0c76b1ea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Reflection;

class Dec {
	public const decimal MinValue = -79228162514264337593543950335m;
	public static void Main ()
	{
		System.Console.WriteLine ("Compiler said value is {0}", MinValue);
		FieldInfo fi = typeof (Dec).GetField ("MinValue");
		Decimal d = (Decimal) fi.GetValue (fi);
		System.Console.WriteLine ("Reflection said value is {0}", d);

		if (d != MinValue)
			throw new Exception ("decimal constant not initialized");
	}
}