Skip to content
Snippets Groups Projects
Select Git revision
  • 010f732dc4c9e72cc76155564bb34d389916d213
  • main default protected
  • Back-Up-UWB
  • app_using_lidar
  • UWB
  • UWB_Experimentation
  • UWB_b&t_position
  • manual_control_user_interface
  • duck-dns-connection-method
  • handling-tcp-messages
10 results

MainPage.xaml.cs

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));
    	}
    }