IHashCodeProvider.cs 344 B

12345678910111213141516171819
  1. // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
  2. //
  3. // System.Collections.IDictionary
  4. //
  5. // Author:
  6. // Vladimir Vukicevic ([email protected])
  7. //
  8. // (C) 2001 Vladimir Vukicevic
  9. //
  10. using System;
  11. using System;
  12. namespace System.Collections {
  13. public interface IHashCodeProvider {
  14. int GetHashCode (object obj);
  15. }
  16. }