//sino se inicializa parte de 0 enum TipoCoche { utilitario, familiar, deportivo, todoterreno, ambulancia, tractor, camion }; enum TipoCoche2 { utilitario=1, familiar, deportivo, todoterreno, ambulancia, tractor, camion }; var a=… Lee más »
using System.Windows.Forms; // Ejemplo del evento KeyPress utilizando el Código Ascii private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == (char)13) MessageBox.Show( “Ha pulsado enter”); } //Es equivalente… Lee más »
Si en el teclado pulsas ALT GR y las teclas de dirección, te va cambiando la orientación.
using System.IO; StreamWriter ficheroEscritura = new StreamWriter(“TextFile.txt”); ficheroEscritura.WriteLine(” Hola Mundo C# “); ficheroEscritura.Close(); StreamReader ficheroLectura = new StreamReader(“TextFile.txt”); var lineaFicheroL = ficheroLectura.ReadLine(); if (lineaFicheroL != null) Console.WriteLine(lineaFicheroL); ficheroLectura.Close();