Skip to content

Instantly share code, notes, and snippets.

@chrisforbes
Created October 27, 2010 02:28
Show Gist options
  • Save chrisforbes/648284 to your computer and use it in GitHub Desktop.
Save chrisforbes/648284 to your computer and use it in GitHub Desktop.
using System;
namespace blah
{
[Flags]
enum Foos { Foo = 1, Bar = 2, Baz = 4 }
class Program
{
static void Main(string[] args)
{
var f = Foos.Bar | Foos.Baz;
Console.WriteLine(f.ToString());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment