Main.cs 366 B

1234567891011121314151617
  1. 
  2. using UIKit;
  3. using Xamarin.Forms.Xaml;
  4. namespace MyWeather.iOS
  5. {
  6. public class Application
  7. {
  8. // This is the main entry point of the application.
  9. static void Main (string[] args)
  10. {
  11. // if you want to use a different Application Delegate class from "AppDelegate"
  12. // you can specify it here.
  13. UIApplication.Main (args, null, "AppDelegate");
  14. }
  15. }
  16. }