static void Main(String[] args) { if (args.Length > 0){ HiloDelegado h1 = new HiloDelegado(); Thread t = new Thread (delegate() { h1.Escribir(args[0]); }); t.Start(); }else Console.WriteLine("Parámetros incorrectos!!"); }
static void Main(String[] args) { if (args.Length > 0){ string nombre = args[0]; HiloDelegado h1 = new HiloDelegado(); Thread t = new Thread (delegate() { h1.Escribir(nombre); }); nombre = "no definido"; t.Start(); }else Console.WriteLine("Parámetros incorrectos!!"); }
static void Main(String[] args) { if (args.Length > 0) { HiloDelegado h1 = new HiloDelegado(); Thread t = new Thread(delegate() { h1.Escribir(args[0]); }); t.Start(); } else { Console.WriteLine("Parámetros incorrectos!!"); } }
static void Main(String[] args) { if (args.Length > 0) { string nombre = args[0]; HiloDelegado h1 = new HiloDelegado(); Thread t = new Thread(delegate() { h1.Escribir(nombre); }); nombre = "no definido"; t.Start(); } else { Console.WriteLine("Parámetros incorrectos!!"); } }