public BasicConsoleWriter(string name)
        {
            if (string.IsNullOrEmpty(name))
                throw new ArgumentException("Is null or empty", "name");

            Name = name;
            BlankLineEventArgs = new LineWrittenEventArgs("", this);
        }
Exemple #2
0
 private void ProxyLineWritten(object sender, LineWrittenEventArgs args)
 {
     ConsoleLineWritten.Fire(this, args);
 }