You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Debugger.cs 278 B

1234567891011121314
  1. using System;
  2. namespace Preparation.Utility
  3. {
  4. public class Debugger
  5. {
  6. static public void Output(object current, string str)
  7. {
  8. #if DEBUG
  9. Console.WriteLine(current.GetType() + " " + current.ToString() + " " + str);
  10. #endif
  11. }
  12. }
  13. }