File: fx\src\data\System\Data\SQLTypes\INullable.cs | |
Project: ndp\System.Data.csproj (System.Data) |
//------------------------------------------------------------------------------ // <copyright file="SQLUtility.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> // <owner current="true" primary="true">blained</owner> // <owner current="true" primary="false">laled</owner> //------------------------------------------------------------------------------ namespace System.Data.SqlTypes { public interface INullable { bool IsNull { get; } } } |