コード例 #1
0
 /// <summary>
 /// Converts the value of the specified enumeration to an unsigned int.
 /// </summary>
 /// <typeparam name="T">An enumeration type</typeparam>
 /// <param name="value">An enumeration value</param>
 /// <returns>A 32-bit unsigned integer that is cast equivalent to the enumeration value</returns>
 public static uint ToUInt32 <T>(T value) where T : struct, E
 => EnumCompiledCache <T> .ToUInt32(value);