Skip to content
Snippets Groups Projects
Select Git revision
  • c239b089746c144b1ef1d522a01aeb2a1ef36251
  • master default protected
2 results

Controller.java

Blame
  • Program.cs 358 B
    using ObjCRuntime;
    using UIKit;
    
    namespace RobobinApp;
    
    public class Program
    {
    	// 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, typeof(AppDelegate));
    	}
    }