Newer
Older
DNA / corlib / System / IDisposable.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 98 bytes First commit
#if !LOCALTEST

namespace System {
	public interface IDisposable {
		void Dispose();
	}
}

#endif