Exemplo n.º 1
0
    static void ProcessFile(string inputFilename)
    {
        Stream s = new ASAPWavStream(inputFilename, song, duration);

        new SoundPlayer(s).PlaySync();
        song     = -1;
        duration = -1;
    }
Exemplo n.º 2
0
 static void ProcessFile(string inputFilename)
 {
     Stream s = new ASAPWavStream(inputFilename, song, duration);
     new SoundPlayer(s).PlaySync();
     song = -1;
     duration = -1;
 }