Skip to content

Instantly share code, notes, and snippets.

@chadedrupt
Created August 3, 2012 02:12
Show Gist options
  • Save chadedrupt/3243536 to your computer and use it in GitHub Desktop.
Save chadedrupt/3243536 to your computer and use it in GitHub Desktop.
Enum Flag Extensions
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Enum.Extensions
{
public static class EnumerationExtensions
{
public static bool Has<T>(this System.Enum type, T value)
{
try
{
return (((int)(object)type & (int)(object)value) == (int)(object)value);
}
catch
{
return false;
}
}
public static bool Is<T>(this System.Enum type, T value)
{
try
{
return (int)(object)type == (int)(object)value;
}
catch
{
return false;
}
}
public static T Add<T>(this System.Enum type, T value)
{
try
{
return (T)(object)(((int)(object)type | (int)(object)value));
}
catch (Exception ex)
{
throw new ArgumentException(
string.Format(
"Could not append value from enumerated type '{0}'.",
typeof(T).Name
), ex);
}
}
public static T Remove<T>(this System.Enum type, T value)
{
try
{
return (T)(object)(((int)(object)type & ~(int)(object)value));
}
catch (Exception ex)
{
throw new ArgumentException(
string.Format(
"Could not remove value from enumerated type '{0}'.",
typeof(T).Name
), ex);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment