✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public Report Build()
{
if (_sections.Count == 0)
throw new InvalidOperationException("Report must have at least one section");
return _report;
}
Що демонструє ця перевірка в Build()?