Program.cs 272 B

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