MongoDB.Driver.Document.GetValueHashCode C# (CSharp) Method

GetValueHashCode() private method

private GetValueHashCode ( object value ) : int
value object
return int
        private int GetValueHashCode(object value)
        {
            if (value == null) {
                return 0;
            }
            return (value is Array) ? GetArrayHashcode((Array)value) : value.GetHashCode();
        }