コード例 #1
0
ファイル: O2Shell.cs プロジェクト: pusp/o2platform
 public O2Shell()
 {
     shellIO = new ShellIO();
     shellExecution = new ShellExecution(shellIO);
     shellIO.writeLine("Welcome to O2's Kernel shell.\n");
     shellIO.writeLine("This is an interactive command prompt into O2's world\n");
     shellIO.writeLine("O2Kernel Process Name: {0}\n\n",DI.O2KernelProcessName);
 }    
コード例 #2
0
 public O2Shell()
 {
     shellIO        = new ShellIO();
     shellExecution = new ShellExecution(shellIO);
     shellIO.writeLine("Welcome to O2's Kernel shell.\n");
     shellIO.writeLine("This is an interactive command prompt into O2's world\n");
     shellIO.writeLine("O2Kernel Process Name: {0}\n\n", DI.O2KernelProcessName);
 }
コード例 #3
0
 public ShellExecution(ShellIO _shellIO)
 {
     shellIO = _shellIO;
 }
コード例 #4
0
ファイル: ShellExecution.cs プロジェクト: pusp/o2platform
 public ShellExecution(ShellIO _shellIO)
 {
     shellIO = _shellIO;
 }