| 1234567891011121314151617 |
- //------------------------------------------------------------------------------
- // <copyright file="CatalogLocation.cs" company="Microsoft">
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // </copyright>
- // <owner current="true" primary="true">[....]</owner>
- // <owner current="true" primary="false">[....]</owner>
- //------------------------------------------------------------------------------
- namespace System.Data.Common {
- using System;
- public enum CatalogLocation { // V1.2.3300, MDAC 79449
- Start = 1,
- End = 2,
- }
- }
|