Program.cs 287 B

1234567891011121314
  1. using Foundation;
  2. using UIKit;
  3. namespace PeerToPeer.iOS
  4. {
  5. public class Application
  6. {
  7. // This is the main entry point of the application.
  8. static void Main(string[] args)
  9. {
  10. UIApplication.Main(args, null, typeof(AppDelegate));
  11. }
  12. }
  13. }