| 1234567891011121314 |
- using System;
- using UIKit;
- namespace SamplesContentBuilder.iOS
- {
- public class Application
- {
- // This is the main entry point of the application.
- static void Main(string[] args)
- {
- UIApplication.Main(args, null, "AppDelegate");
- }
- }
- }
|