(string value)
| 8 | private static readonly StringBuilder Buffer = new StringBuilder(); |
| 9 | |
| 10 | public static void WriteLine(string value) |
| 11 | { |
| 12 | lock (Buffer) |
| 13 | { |
| 14 | Buffer.AppendLine(String.Format("{0} {1}", DateTime.Now, value)); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | public new static string ToString() |
| 19 | { |
no outgoing calls
no test coverage detected