DicomServer/iOS/SimpleViewer.iOS/Main.cs
2024-12-13 10:06:20 +08:00

18 lines
506 B
C#

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