El campo MaxValue de UInt16 Struct se usa para representar el valor máximo del entero sin signo de 16 bits. El valor de este campo es constante significa que el usuario no puede cambiar el valor de este campo. El valor de este campo es 65535. Su valor hexadecimal es 0xFFFF . Se usa para evitar OverflowException si el valor entero no está en el rango del tipo UInt16 .
Sintaxis:
public const ushort MaxValue = 65535;
Valor devuelto: este campo siempre devuelve 65535.
Ejemplo:
// C# program to illustrate the // UInt16.MaxValue field using System; class GFG { // Main Method static public void Main() { // display the Maximum value // of UInt16 struct Console.WriteLine("Maximum Value is: " + UInt16.MaxValue); // Taking an array of the // unsigned long integer // i.e UInt64 data type ulong[] num = {3422146, 7443, 43535776, 2342534654756123}; // taking variable of UInt16 type ushort mynum; foreach(long n in num) { if (n >= UInt16.MinValue && n <= UInt16.MaxValue) { // using the method of Convert class // to convert Int64 to UInt16 mynum = Convert.ToUInt16(n); Console.WriteLine("Conversion is Possible."); } else { Console.WriteLine("Not Possible"); } } } }
Producción:
Maximum Value is: 65535 Not Possible Conversion is Possible. Not Possible Not Possible
Referencia:
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA