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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Data/System.Data.SqlTypes/INullable.cs')
-rw-r--r--mcs/class/System.Data/System.Data.SqlTypes/INullable.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/mcs/class/System.Data/System.Data.SqlTypes/INullable.cs b/mcs/class/System.Data/System.Data.SqlTypes/INullable.cs
deleted file mode 100644
index cc4b6f9bb8f..00000000000
--- a/mcs/class/System.Data/System.Data.SqlTypes/INullable.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// 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;
- }
- }
-}