public Profiler(string kley, string lab, Type ty, Def indef, Thing inthing, MethodBase inmeth)
 {
     key       = kley;
     thing     = inthing;
     def       = indef;
     meth      = inmeth;
     label     = lab;
     stopwatch = new Stopwatch();
     type      = ty;
     History   = new ProfilerHistory(Analyzer.MaxHistoryEntries);
 }
 public Profiler(string kley, string lab, Type ty, Def indef, Thing inthing)
 {
     key        = kley;
     thing      = inthing;
     def        = indef;
     label      = lab;
     stopwatch  = new Stopwatch();
     type       = ty;
     startBytes = 0;
     endBytes   = 0;
     BytesUsed  = 0;
     History    = new ProfilerHistory(Analyzer.MaxHistoryEntries);
 }