/// <summary> /// Converts the value of the specified enumeration to an unsigned long. /// </summary> /// <typeparam name="T">An enumeration type</typeparam> /// <param name="value">An enumeration value</param> /// <returns>A 64-bit unsigned integer that is cast equivalent to the enumeration value</returns> public static ulong ToUInt64 <T>(T value) where T : struct, E => EnumCompiledCache <T> .ToUInt64(value);