123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Threading;
- namespace Eserciziotep4
- {
- static class GestioneThread
- {
- private static AutoResetEvent event1 = new AutoResetEvent(true);
- private static AutoResetEvent event2 = new AutoResetEvent(false);
- public static void Scrivin()
- {
- event1.Set();
- string n;
- Console.Write("scrivere il nome ");
- n = Console.ReadLine();
- Console.Write("scrivere il cognome ");
- Gestione_File.Scrivi(n,Console.ReadLine());
- }
- public static void Leggi()
- {
- event2.Set();
- string[] q= Gestione_File.Leggi();
- for (int i = 0; i < q.Length; i++)
- {
- Console.WriteLine(" il valore è: {0} ",q[i]);
- }
- }
- }
- }
|