ProcessInstructions() public method

public ProcessInstructions ( ) : void
return void
コード例 #1
0
ファイル: TestInterpreter.cs プロジェクト: ChrisBDFA/fitsharp
 public static string ExecuteInstructions(string instructionString) {
     var testSocket = new TestSocket(string.Format("{0:000000}:{1}", instructionString.Length, instructionString));
     var messenger = new Messenger(testSocket);
     var interpreter = new Interpreter(messenger, string.Empty, Builder.Service());
     interpreter.ProcessInstructions();
     return testSocket.Output;
 }