Main.cs 506 B

123456789101112131415161718
  1. // Copyright (c) 2012-2017 fo-dicom contributors.
  2. // Licensed under the Microsoft Public License (MS-PL).
  3. using UIKit;
  4. namespace SimpleViewer.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. }