Apply patch from David Sandor (David.Sandor@scigames.com): LIKE expression was not...
[mono.git] / mcs / class / System.Data / System.Data / PropertyCollection.cs
1 //
2 // System.Data.PropertyCollection.cs
3 //
4 // Author:
5 //    Daniel Morgan <danmorg@sc.rr.com>
6 //
7 // (c) Ximian, Inc. 2002
8 //
9
10 using System;
11 using System.Collections;
12 using System.ComponentModel;
13
14 namespace System.Data
15 {
16         /// <summary>
17         /// a collection of properties that can be added to 
18         /// DataColumn, DataSet, or DataTable.
19         /// The ExtendedProperties property of a 
20         /// DataColumn, DataSet, or DataTable class can
21         /// retrieve a PropertyCollection.
22         /// </summary>
23         public class PropertyCollection : Hashtable {
24                 public PropertyCollection() {
25                 }
26
27                 // the only public methods and properties 
28                 // are all inherited from Hashtable
29         }
30 }