Stumbling around on Randy Ridge's site some more, you could find Daisy.cs. Pretty funny, heh.
// csc /o+ /t:exe /out:Daisy.exe Daisy.cs
using System;
using System.Threading;
using System.Runtime.InteropServices;
using System.Security;
public sealed class Daisy
{
public static void Main()
{
Beep(2093, 769);Beep(1760, 769);Beep(1396, 769);Beep(1047, 769);Beep(1174, 192);
Beep(1319, 192);Beep(1397, 192);Beep(1175, 385);Beep(1397, 192);Beep(1047, 962);
Thread.Sleep(385);Beep(1568, 769);Beep(2093, 769);Beep(1760, 769);Beep(1397, 769);
Beep(1175, 192);Beep(1319, 192);Beep(1397, 192);Beep(1568, 385);Beep(1760, 192);
Beep(1568, 962);Thread.Sleep(385);Beep(1760, 192);Beep(1865, 192);Beep(1760, 192);
Beep(1568, 192);Beep(2093, 385);Beep(1760, 192);Beep(1568, 192);Beep(1397, 962);
Beep(1568, 192);Beep(1760, 385);Beep(1397, 192);Beep(1175, 385);Beep(1397, 192);
Beep(1175, 192);Beep(1047, 962);Beep(1047, 192);Beep(1397, 385);Beep(1760, 192);
Beep(1568, 385);Beep(1047, 192);Beep(1397, 385);Beep(1760, 192);Beep(1568, 192);
Beep(1760, 192);Beep(1865, 192);Beep(2093, 192);Beep(1760, 192);Beep(1397, 192);
Beep(1568, 385);Beep(1047, 192);Beep(1397, 962);
}
[DllImport("kernel32.dll"), SuppressUnmanagedCodeSecurity]
public static extern Boolean Beep(Int32 frequency, Int32 duration);
}
Jayme