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

INullable.cs « System.Data.SqlTypes « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc4b6f9bb8f02266cf62546e1a8849a6385e3f95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// System.Data.SqlTypes.INullable
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//
// (C) Ximian, Inc.
//

namespace System.Data.SqlTypes
{
	/// <summary>
	/// All of the System.Data.SqlTypes objects and structures implement the INullable interface, 
	/// reflecting the fact that, unlike the corresponding system types, SqlTypes can legally contain the value null.
	/// </summary>
	public interface INullable
	{
		bool IsNull {
			get;
		}
	}
}