|
|
|
@ -30,7 +30,7 @@ public abstract partial class ExifTag : IEquatable<ExifTag> |
|
|
|
/// </summary>
|
|
|
|
/// <param name="left">The first <see cref="ExifTag"/> to compare.</param>
|
|
|
|
/// <param name="right"> The second <see cref="ExifTag"/> to compare.</param>
|
|
|
|
public static bool operator !=(ExifTag left, ExifTag right) => !(left == right); |
|
|
|
public static bool operator !=(ExifTag? left, ExifTag? right) => !(left == right); |
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
public override bool Equals(object? obj) |
|
|
|
|