SlavaGu.ConsoleAppLauncher.ConsoleOutputEventArgs.ConsoleOutputEventArgs C# (CSharp) Method

ConsoleOutputEventArgs() public method

public ConsoleOutputEventArgs ( string line, bool isError ) : System
line string
isError bool
return System
        public ConsoleOutputEventArgs(string line, bool isError)
        {
            Line = line;
            IsError = isError;
        }
ConsoleOutputEventArgs