IHashCodeProvider.cs 336 B

123456789101112131415161718
  1. // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
  2. //
  3. // System.Collections.IHashCodeProvider
  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 IHashCodeProvider {
  13. int GetHashCode (object obj);
  14. }
  15. }