Ejemplo n.º 1
0
 /// <summary>
 /// Converts the value of the specified enumeration to a short.
 /// </summary>
 /// <typeparam name="T">An enumeration type</typeparam>
 /// <param name="value">An enumeration value</param>
 /// <returns>A 16-bit signed integer that is cast equivalent to the enumeration value</returns>
 public static short ToInt16 <T>(T value) where T : struct, E
 => EnumCompiledCache <T> .ToInt16(value);