d@0: using System; d@0: using System.Collections.Generic; d@0: using System.Linq; d@0: using System.Threading.Tasks; d@0: using System.Windows.Forms; d@0: d@0: namespace DeMaskingLT d@0: { d@0: static class Program d@0: { d@0: /// d@0: /// The main entry point for the application. d@0: /// d@0: [STAThread] d@0: static void Main() d@0: { d@0: Application.EnableVisualStyles(); d@0: Application.SetCompatibleTextRenderingDefault(false); d@0: Application.Run(new ListenToAudio()); d@0: } d@0: } d@0: }