using System;
class Test
{
enum Foo { Bar, Baz };
const int One = 1;
const int Une = 1;
static void Main()
{
Foo f = One-Une;
Console.WriteLine(f);
}
}
class Test
{
enum Foo { Bar, Baz };
const int One = 1;
const int Une = 1;
static void Main()
{
Foo f = One-Une;
Console.WriteLine(f);
}
}

Akkiraju IvaturiPosted Sep 7, 2012, 11:24 PM