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

IdentifierCase.cs « System.Data.Common « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe901e9ed349edb0aeca62cf11384d24eae85cc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// System.Data.Common.IdentifierCase.cs
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2003
//

#if NET_1_2

namespace System.Data.Common {
	public enum IdentifierCase 
	{
		Insensitive,
		Sensitive,
		Unknown
	}
}

#endif