public SolveProblem(TextBox txtLog) { logTxt = new LogHandler(txtLog); logMsg = new LogHandler(null); }
public SolveProblem(TextBox txtLog, TextBox msgLog) { logTxt = new LogHandler(txtLog); logMsg = new LogHandler(msgLog); }
public SolveProblem() { logTxt = new LogHandler(null); logMsg = new LogHandler(null); }