2012-03-07 03:28:07 +04:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
|
2014-05-15 22:39:16 +04:00
|
|
|
using Foundation;
|
|
|
|
using UIKit;
|
2012-03-07 03:28:07 +04:00
|
|
|
|
|
|
|
namespace coreimage
|
|
|
|
{
|
|
|
|
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.
|
|
|
|
Console.WriteLine(System.IO.Directory.GetCurrentDirectory());
|
|
|
|
UIApplication.Main (args, null, "AppDelegate");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|