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

namespace System {
	public interface ICustomFormatter {

		string Format(string format, object arg, IFormatProvider formatProvider);

	}
}

#endif