示例#1
0
 /// <summary>
 /// Clears up any resources associated with this object.
 /// </summary>
 public void Dispose()
 {
     if (!disposed)
     {
         channels.Clear();
         channels = null;
         disposed = true;
         GC.SuppressFinalize(this);
     }
 }
示例#2
0
 /// <summary>
 /// Constructs a new instance of the CopyData class
 /// </summary>
 public CopyData()
 {
     channels = new CopyDataChannels(this);
 }