mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-10 13:39:12 +00:00
15 lines
348 B
C#
15 lines
348 B
C#
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;
|
|
}
|
|
}
|
|
} |