SharedSourceCLI.TK.TclInterp.TkMain C# (CSharp) 메소드

TkMain() 공개 메소드

public TkMain ( TclAppInitProc initProc ) : void
initProc TclAppInitProc
리턴 void
        public void TkMain(TclAppInitProc initProc) {
            TkMain(initProc, Environment.GetCommandLineArgs());
        }

Same methods

TclInterp::TkMain ( TclAppInitProc initProc, string argv ) : void

Usage Example

예제 #1
0
 void Run()
 {                   
     //
     // Create the interpreter - and start the application.
     //
     TclInterp interp = new TclInterp();
     interp.TkMain(new TclAppInitProc(InitProc));
 }