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

namespace System {
	public interface IFormattable {

		string ToString(string format, IFormatProvider formatProvider);

	}
}

#endif