1 write to Value
Microsoft.DotNet.XUnitAssert.Tests (1)
EqualityAssertsTests.cs (1)
4558
Value
= value;
5 references to Value
Microsoft.DotNet.XUnitAssert.Tests (5)
EqualityAssertsTests.cs (5)
4494
public bool Equals(IntWrapper? other) => Value == other!.
Value
;
4506
bool IEquatable<IntWrapper>.Equals(IntWrapper? other) => Value == other!.
Value
;
4518
public int CompareTo(IntWrapper? other) => Value.CompareTo(other!.
Value
);
4530
int IComparable<IntWrapper>.CompareTo(IntWrapper? other) => Value.CompareTo(other!.
Value
);
4547
public override bool Equals(object? obj) => Value == ((IntWrapper?)obj)!.
Value
;