mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-07-11 03:27:11 +00:00
17 lines
367 B
C#
17 lines
367 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 |