예제 #1
0
 /// <summary>
 /// Render code line in the results section of the Repl
 /// </summary>
 /// <param name="codeLine"></param>
 internal void ShowCodeLineInResultDiv(string codeLine)
 {
     ShowPromptInResultDiv();
     _outputBuffer.ElementClass = _sdlrLine;
     _outputBuffer.ElementName  = "div";
     _outputBuffer.Write(codeLine);
     _outputBuffer.Reset();
 }