Debugger.cs 470 B

123456789101112131415
  1. using System.Runtime.CompilerServices;
  2. namespace System.Diagnostics
  3. {
  4. public static class Debugger
  5. {
  6. public static readonly string DefaultCategory;
  7. public static bool IsAttached { get { throw null; } }
  8. public static void Break() { }
  9. public static bool IsLogging() { throw null; }
  10. public static bool Launch() { throw null; }
  11. public static void Log(int level, string category, string message) {}
  12. public static void NotifyOfCrossThreadDependency() { }
  13. }
  14. }