()
| 585 | } |
| 586 | |
| 587 | internal List<Box> GetBoxes() |
| 588 | { |
| 589 | var result = new List<Box>(); |
| 590 | for (int i = 0; i < Elements.Count; i++) |
| 591 | { |
| 592 | if (Elements[i] is Box box) |
| 593 | result.Add(box); |
| 594 | } |
| 595 | return result; |
| 596 | } |
| 597 | |
| 598 | internal void GetBoxes(List<Box> result) |
| 599 | { |
no test coverage detected