Exemplo n.º 1
0
 public static void WriteLine(string text, DebugStdOutOptions option)
 {
     if (_wrapper.Value.Options == option)
     {
         Debug.WriteLine(text);
     }
 }
Exemplo n.º 2
0
        private DebugWrapper()
        {
            ArgumentParser parser   = new ArgumentParser();
            var            argument = parser.Parse(Environment.GetCommandLineArgs());

            Options = argument.DebugOptions;
        }