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

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

public class Testing
{
	public enum Fruit { Apple, Orange };	

	public static void Main()
	{
		Console.WriteLine(Convert.ToInt64( Fruit.Orange as Enum ) );
	}
}