Files
sharpcompress/src/SharpCompress/EnumExtensions.cs
2016-09-26 10:55:52 +01:00

18 lines
352 B
C#

#if NET35
using System;
namespace SharpCompress
{
internal static class EnumExtensions
{
public static bool HasFlag(this Enum enumRef, Enum flag)
{
long value = Convert.ToInt64(enumRef);
long flagVal = Convert.ToInt64(flag);
return (value & flagVal) == flagVal;
}
}
}
#endif