CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
Main.cs
Go to the documentation of this file.
1using System;
2using System.Linq;
3using System.Collections.Generic;
4
5using Foundation;
6using UIKit;
7
8namespace Csla.Ios.Test
9{
10 public class Application
11 {
12 // This is the main entry point of the application.
13 static void Main(string[] args)
14 {
15 // if you want to use a different Application Delegate class from "UnitTestAppDelegate"
16 // you can specify it here.
17 UIApplication.Main(args, null, "UnitTestAppDelegate");
18 }
19 }
20}