Exemplo n.º 1
0
 public static void Dump(object obj, string name, DumperOptions options)
 {
     Debug(Dumper.Dump(obj, name, options));
 }
Exemplo n.º 2
0
 public static void Dump(object obj, string name, int depth)
 {
     Debug(Dumper.Dump(obj, name, depth));
 }
Exemplo n.º 3
0
 public static void Dump(object obj, int depth)
 {
     Debug(Dumper.Dump(obj, depth));
 }
Exemplo n.º 4
0
 public static void Dump(object obj, string name)
 {
     Debug(Dumper.Dump(obj, name));
 }
Exemplo n.º 5
0
 public static void Dump(object obj)
 {
     Debug(Dumper.Dump(obj));
 }