Las palabras clave son las palabras en un idioma que se utilizan para algún proceso interno o representan algunas acciones predefinidas. var es una palabra clave, se utiliza para declarar una variable de tipo implícito, que especifica el tipo de una variable en función del valor inicial .
Sintaxis:
var variable_name = value;
Ejemplo:
Input: a = 637 b = -9721087085262 Output: value of a 637, type System.Int32 value of b -9721087085262, type System.Int64 Input: c = 120.23f d = 150.23m e = G f = Geeks Output: value of c 120.23, type System.Single value of d 150.23, type System.Decimal value of e G, type System.Char value of f Geeks, type System.String
Ejemplo 1:
// C# program for var keyword using System; using System.Text; class GFG { static void Main(string[] args) { var a = 637; var b = -9721087085262; // to print their type of variables Console.WriteLine("value of a {0}, type {1}", a, a.GetType()); Console.WriteLine("value of b {0}, type {1}", b, b.GetType()); } }
Producción:
value of a 637, type System.Int32 value of b -9721087085262, type System.Int64
Ejemplo 2:
// C# program for var keyword using System; using System.Text; namespace Test { class GFG { static void Main(string[] args) { var c = 120.23f; var d = 150.23m; var e = 'G'; var f = "Geeks"; // to print their type of variables Console.WriteLine("value of c {0}, type {1}", c, c.GetType()); Console.WriteLine("value of d {0}, type {1}", d, d.GetType()); Console.WriteLine("value of e {0}, type {1}", e, e.GetType()); Console.WriteLine("value of f {0}, type {1}", f, f.GetType()); // hit ENTER to exit Console.ReadLine(); } } }
Producción:
value of c 120.23, type System.Single value of d 150.23, type System.Decimal value of e G, type System.Char value of f Geeks, type System.String
Publicación traducida automáticamente
Artículo escrito por shivanisinghss2110 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA