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

OleDbErrorCollection.cs « System.Data.OleDb « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7e796a5a8d88386a1735b4afe3757ada778955b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// System.Data.OleDb.OleDbErrorCollection
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//
// Copyright (C) Rodrigo Moya, 2002
//

using System.Collections;
using System.Data;
using System.Data.Common;

namespace System.Data.OleDb
{
	public sealed class OleDbErrorCollection : ICollection, IEnumerable
	{
	}
}