WarningInfoCollectionClear Method |
Namespace: Aspose.Words
WarningInfoCollection wic = new WarningInfoCollection(); using (IEnumerator<WarningInfo> enumerator = wic.GetEnumerator()) { while (enumerator.MoveNext()) { WarningInfo wi = enumerator.Current; if (wi != null) Console.WriteLine(wi.Description); } wic.Clear(); }