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

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

namespace System {

	public interface IFormatProvider {
		object GetFormat (Type format_type);
	}
}