SIL.Utils.ImagePicture.Dispose C# (CSharp) 메소드

Dispose() 보호된 메소드

Releases unmanaged and - optionally - managed resources
protected Dispose ( bool fDisposing ) : void
fDisposing bool true to release both managed and unmanaged /// resources; false to release only unmanaged resources.
리턴 void
		protected virtual void Dispose(bool fDisposing)
		{
			System.Diagnostics.Debug.WriteLineIf(!fDisposing, "****** Missing Dispose() call for " + GetType().Name + ". ****** ");
			if (fDisposing)
			{
				if (m_img != null)
					m_img.Dispose();
			}
			m_img = null;
		}