| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // System.Data.ObjectSpaces.Query.OrderByItemCollection
- //
- //
- // Author:
- // Richard Thombs ([email protected])
- //
- #if NET_1_2
- using System;
- using System.Collections;
- namespace System.Data.ObjectSpaces.Query
- {
- [MonoTODO()]
- public class OrderByItemCollection : CollectionBase
- {
- [MonoTODO()]
- public OrderByItemCollection() : base()
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public void Add(OrderByItem orderByItem)
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public OrderByItemCollection Clone()
- {
- throw new NotImplementedException();
- }
- // FIXME: This ain't right...
- [MonoTODO()]
- public OrderByItem Item
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- }
- }
- #endif
|