annotate DeMaskingLT/Program.cs @ 3:e0bd22354f3f tip

Fixed name bug
author Geogaddi\David <d.m.ronan@qmul.ac.uk>
date Fri, 07 Jul 2017 12:34:24 +0100
parents e8147674e932
children
rev   line source
d@0 1 using System;
d@0 2 using System.Collections.Generic;
d@0 3 using System.Linq;
d@0 4 using System.Threading.Tasks;
d@0 5 using System.Windows.Forms;
d@0 6
d@0 7 namespace DeMaskingLT
d@0 8 {
d@0 9 static class Program
d@0 10 {
d@0 11 /// <summary>
d@0 12 /// The main entry point for the application.
d@0 13 /// </summary>
d@0 14 [STAThread]
d@0 15 static void Main()
d@0 16 {
d@0 17 Application.EnableVisualStyles();
d@0 18 Application.SetCompatibleTextRenderingDefault(false);
d@0 19 Application.Run(new ListenToAudio());
d@0 20 }
d@0 21 }
d@0 22 }