public bool Equals(BlobAssetReference other)
 {
     return(_data.Equals(other._data));
 }
Exemple #2
0
 /// <summary>
 /// Two BlobAssetReferences are equal when they reference the same data.
 /// </summary>
 /// <param name="other">The reference to compare to this one.</param>
 /// <returns>True, if both references point to the same data or if both are <see cref="Null"/>.</returns>
 public bool Equals(BlobAssetReference <T> other)
 {
     return(m_data.Equals(other.m_data));
 }