XmlItemViewCollection.cs 358 B

1234567891011121314151617181920212223
  1. //
  2. // XmlItemViewCollection.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. // (C)2004 Novell Inc.
  8. //
  9. #if NET_2_0
  10. using System.Collections;
  11. using System.ComponentModel;
  12. namespace System.Xml
  13. {
  14. [MonoTODO]
  15. public class XmlItemViewCollection
  16. // : IBindingList, IList, ICollection, IEnumerable, ITypedList
  17. {
  18. // TODO: fill members
  19. }
  20. }
  21. #endif