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

using System;
using System.Collections.Generic;
using System.Text;

namespace System {
	public interface IFormatProvider {
		object GetFormat(Type formatType);
	}
}

#endif