Start on Xamarin Demo App

This commit is contained in:
Joel Wetzell
2020-06-18 19:24:55 -05:00
parent 41334319bd
commit 9d002746d6
58 changed files with 1170 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace QSharpXamDemo.iOS
{
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different Application Delegate class from "AppDelegate"
// you can specify it here.
UIApplication.Main(args, null, "AppDelegate");
}
}
}