OpenFile() 개인적인 메소드

private OpenFile ( string fileName ) : void
fileName string
리턴 void
예제 #1
0
        public static int GuiMain(String[] args)
        {
            Application.Init ();

            MonoCovGui main = new MonoCovGui ();

            // allow the app to show up first
            GLib.Idle.Add (delegate() {
                if (args.Length > 0)
                    main.OpenFile (args[0]);
                return false;
            });

            Application.Run ();

            return 0;
        }
예제 #2
0
파일: MonoCov.cs 프로젝트: sergeyt/monocov
	public static int GuiMain (String[] args)
	{
		Application.Init ();

		MonoCovGui main = new MonoCovGui ();

		// allow the app to show up first
		GLib.Idle.Add (delegate (){
			if (args.Length > 0)
				main.OpenFile (args[0]);
			return false;
		});

		Application.Run ();

		return 0;
	}