public void GetEnumeratorEx()
 {
     //ExStart
     //ExFor:GetEnumerator
     //ExId:GetEnumeratorEx
     //ExSummary:Shows how to use GetEnumerator.
     Aspose.Words.WarningInfoCollection wic = new Aspose.Words.WarningInfoCollection();
     var enumerator = wic.GetEnumerator();
     //ExEnd
 }
 public void ClearEx()
 {
     //ExStart
     //ExFor:Clear
     //ExId:ClearEx
     //ExSummary:Shows how to use Clear.
     Aspose.Words.WarningInfoCollection wic = new Aspose.Words.WarningInfoCollection();
     wic.Clear();
     //ExEnd
 }