1
Answer

Will this compile?

Akkiraju Ivaturi

Akkiraju Ivaturi

12y
1.1k
1
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)