El campo MinValue de Byte Struct se usa para representar el valor mínimo posible del tipo de datos byte. El valor de este campo es constante significa que un usuario no puede cambiar el valor de este campo. El valor de este campo es 0 .
Sintaxis:
public const byte MinValue = 0;
Valor devuelto: este campo siempre devuelve 0.
Ejemplo:
// C# program to illustrate the // Byte.MinValue field using System; class GFG { // Main Method static public void Main() { // display the Minimum value of Byte struct Console.WriteLine("Minimum Value is: " + Byte.MinValue); // Taking an array of the // integers int[] num = {12, 45, 1235, 5342}; // taking variable of Byte type byte mynum; foreach(int n in num) { if (n >= Byte.MinValue && n <= Byte.MaxValue) { // using the method of Convert class mynum = Convert.ToByte(n); Console.WriteLine("Conversion is Possible."); } else { Console.WriteLine("Not Possible"); } } } }
Producción:
Minimum Value is: 0 Conversion is 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