diff --git a/correctformsapp/main.cs b/correctformsapp/main.cs new file mode 100644 index 0000000..247f8be --- /dev/null +++ b/correctformsapp/main.cs @@ -0,0 +1,20 @@ +using System; +using System.IO; +using System.Linq; +using System.Collections.Generic; +using Xamarin.Forms; + +namespace CSharp_Shell +{ + + public class Program + { + public static void Main() + { + Ui.RunOnUiThread(()=> + { + Ui.LoadApplication(new Application()); + }); + } + } +}