Objects.cs 361 B

1234567891011121314
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. #pragma warning disable
  3. namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities
  4. {
  5. public static class Objects
  6. {
  7. public static int GetHashCode(object obj)
  8. {
  9. return null == obj ? 0 : obj.GetHashCode();
  10. }
  11. }
  12. }
  13. #pragma warning restore
  14. #endif