FastQuant.Report.Clear C# (CSharp) Method

Clear() public method

public Clear ( ) : void
return void
        public void Clear()
        {
            foreach (var report in this.reports)
                report.Clear();
            this.reports.Clear();
        }
    }