IDictionaryEnumerator.cs 405 B

1234567891011121314151617181920
  1. // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
  2. //
  3. // System.Collections.IDictionaryEnumerator
  4. //
  5. // Author:
  6. // Vladimir Vukicevic ([email protected])
  7. //
  8. // (C) 2001 Vladimir Vukicevic
  9. //
  10. using System;
  11. namespace System.Collections {
  12. public interface IDictionaryEnumerator : IEnumerator {
  13. DictionaryEntry Entry { get; }
  14. object Key { get; }
  15. object Value { get; }
  16. }
  17. }