using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Assets.Scripts.Devices { public static class ByteExtensions { public static byte GetDifference(this byte currentVal, byte previousVal) { byte num = (byte)((uint)currentVal - (uint)previousVal); if ((int)previousVal > (int)currentVal) num = (byte)((int)byte.MaxValue + (int)num + 1); return num; } public static bool Contains(this IEnumerable enumerable, byte[] bytes) { return Enumerable.Any(enumerable, (Func)(x => Enumerable.SequenceEqual((IEnumerable)x, (IEnumerable)bytes))); } public static bool IsFlagSet(this byte value, byte flag) { return ((uint)value & (uint)flag) > 0U; } public static bool IsFlagSetAtPosition(this byte value, byte position) { return ((uint)value & 1U << (int)position) > 0U; } } }