18 lines
506 B
C#
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");
|
|
}
|
|
}
|
|
} |