()
| 462 | public class PathsD : List<PathD> |
| 463 | { |
| 464 | public PathsD() : base() { } |
| 465 | public PathsD(int capacity = 0) : base(capacity) { } |
| 466 | public PathsD(IEnumerable<PathD> paths) : base(paths) { } |
| 467 | public string ToString(int precision = 2) |
nothing calls this directly
no outgoing calls
no test coverage detected