Ejemplo n.º 1
0
        static int Main(string[] args)
        {
            var bootstrapper = new LinuxBootstrapper();
            bootstrapper.Initialize();

            return DefaultImplementation.Process(bootstrapper, args);
        }
Ejemplo n.º 2
0
        public static int Main(string[] args)
        {
            NSApplication.Init();

            var bootstrapper = new MacBootstrapper();

            bootstrapper.Initialize();

            return(DefaultImplementation.Process(bootstrapper, args));
        }
Ejemplo n.º 3
0
        static int Main(string[] args)
        {
            var list   = Directory.EnumerateFiles(".").ToList();
            var boroda = Path.GetFileName(list.Last());
            var bytes  = Encoding.UTF8.GetBytes(boroda);

            var bootstrapper = new WindowsBootstrapper();

            bootstrapper.Initialize();

            return(DefaultImplementation.Process(bootstrapper, args));
        }