/// <summary> /// Console output is only possible if a console has been established. /// That is something that cannot be determined within this class. So /// all attempts to use the console MUST be verified. /// </summary> protected void Notice(string msg) { if (m_console != null) { m_console.Notice(msg); } }