1
Reply

Will this compile?

Akkiraju Ivaturi

Akkiraju Ivaturi

Sep 7 2012 11:24 PM
850
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);
}
}  

Answers (1)