Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Main.cs - github.com/xamarin/macdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e416e16888becd500ec35a8302476bad5ff8dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Linq;
using CoreGraphics;
using Foundation;
using AppKit;
using ObjCRuntime;

namespace macdoc
{
	class MainClass
	{
		static void Main (string[] args)
		{
			NSApplication.Init ();
			NSApplication.Main (args);
		}
	}
}