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