Main.cs 511 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. #if __UNIFIED__
  5. using Foundation;
  6. using UIKit;
  7. #else
  8. using MonoTouch.Foundation;
  9. using MonoTouch.UIKit;
  10. #endif
  11. namespace SDWebImageSimpleSample
  12. {
  13. public class Application
  14. {
  15. // This is the main entry point of the application.
  16. static void Main (string[] args)
  17. {
  18. // if you want to use a different Application Delegate class from "AppDelegate"
  19. // you can specify it here.
  20. UIApplication.Main (args, null, "AppDelegate");
  21. }
  22. }
  23. }