MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / TraceDiff

Method TraceDiff

plugins/cs/HttpMonitor/Program.cs:46–62  ·  view source on GitHub ↗
(List<string> lastLines, List<string> lines)

Source from the content-addressed store, hash-verified

44 }
45
46 public void TraceDiff(List<string> lastLines, List<string> lines)
47 {
48 if (lines.Count > lastLines.Count)
49 {
50 for (int i = lastLines.Count; i < lines.Count; i++)
51 {
52 Trace.Write(lines[i]);
53 }
54 }
55 else
56 {
57 foreach (var line in lines)
58 {
59 Trace.Write(line);
60 }
61 }
62 }
63
64 public void Monitor()
65 {

Callers

nothing calls this directly

Calls 1

WriteMethod · 0.45

Tested by

no test coverage detected