예제 #1
0
        public static void Main(string[] args)
        {
            Sound sineWave = new Sound("Sound/dit.wav", "Sound/dah.wav");
            Morse morse    = new Morse("InternationalMorse.txt", sineWave);

            while (true)
            {
                morse.RunAll();
                System.Threading.Thread.Sleep(200);
            }
        }
예제 #2
0
        public static void Main(string[] args)
        {
            Sound sineWave = new Sound ("Sound/dit.wav", "Sound/dah.wav");
            Morse morse = new Morse("InternationalMorse.txt", sineWave);

            while (true)
            {
                morse.RunAll ();
                System.Threading.Thread.Sleep (200);
            }
        }
예제 #3
0
 public static void Main(string[] args)
 {
     Morse morse = new Morse(".//InternationalMorse.txt");
 }
예제 #4
0
 public static void Main(string[] args)
 {
     Morse morse = new Morse(".//InternationalMorse.txt");
 }