コード例 #1
0
        static void Main(string[] args)
        {
            try
            {
                PortBooterHost host = new PortBooterHost();

                host.Process(args);
            }
            catch (Exception e)
            {
                Console.WriteLine("{0}", e.ToString());
            }
        }
コード例 #2
0
ファイル: Main.cs プロジェクト: aura1213/netmf-interpreter
        static void Main( string[] args )
        {
            try
            {
                PortBooterHost host = new PortBooterHost();

                host.Process( args );
            }
            catch(Exception e)
            {
                Console.WriteLine( "{0}", e.ToString() );
            }
        }