File: Common\System\Data\DataStorage.cs
Web Access
Project: System.Data.Odbc.csproj (System.Data.Odbc)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

// Remove when fully integrated

namespace System.Data.Common
{
    internal abstract class DataStorage
    {
        internal static bool IsSqlType(object storageType)
        {
            throw new NotImplementedException();
        }
    }
}