Пример #1
0
 /// <summary>Removes all elements of the <see cref="ExcelPool"/>.
 /// </summary>
 /// <remarks>The <see cref="AfterClear"/> event occurs after the elements of the <see cref="ExcelPool"/> has been removed.</remarks>
 public static void Clear()
 {
     sm_Pool.Clear();
     if (AfterClear != null)
     {
         AfterClear(new EventArgs());
     }
 }