Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ICustomFormatter.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c51ab9c025ae778a23f0d4f6ce6533cc16ede68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// System.ICustomFormatter.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

namespace System {

	public interface ICustomFormatter {
		string Format (string format, object arg, IFormatProvider formatProvider);
	}
}