Beispiel #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);
     }
 }
Beispiel #2
0
 /// <summary>
 /// Constructs a new instance of the CopyData class
 /// </summary>
 public CopyData()
 {
     channels = new CopyDataChannels(this);
 }
Beispiel #3
0
		/// <summary>
		/// Constructs a new instance of the CopyData class
		/// </summary>
		public CopyData()
		{
			channels = new CopyDataChannels(this);
		}
Beispiel #4
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);
			}
		}