how an we check the equality
Answers
Answered by
0
Value equality means that two objects contain the same value or values. For primitive value types such as int or bool, tests for value equality are straightforward. You can use the == operator, as shown in the following example. int a = GetOriginalValue(); int b = GetCurrentValue(); // Test for value equality.
Similar questions