ios-samples/MapCallouts/Main.cs

20 строки
419 B
C#
Исходник Постоянная ссылка Обычный вид История

2011-10-03 13:08:00 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
2015-01-19 18:09:40 +03:00
using Foundation;
using UIKit;
2011-10-03 13:08:00 +04:00
namespace MapCallouts
{
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");
}
}
}