// // System.Data.SqlTypes.INullable // // Author: // Rodrigo Moya (rodrigo@ximian.com) // // (C) Ximian, Inc. // namespace System.Data.SqlTypes { /// /// 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. /// public interface INullable { bool IsNull { get; } } }