()
| 432 | public Path64(int capacity = 0) : base(capacity) { } |
| 433 | public Path64(IEnumerable<Point64> path) : base(path) { } |
| 434 | public override string ToString() |
| 435 | { |
| 436 | return string.Join(", ", this); |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | public class Paths64 : List<Path64> |
nothing calls this directly
no outgoing calls
no test coverage detected