Skip to content

Commit

Permalink
Fixed Typo, (#4134)
Browse files Browse the repository at this point in the history
Q 10
Lines 129-132
  • Loading branch information
thomasthaddeus authored Aug 2, 2022
1 parent e43df19 commit 30ffdfa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions c-sharp/c-sharp-quiz.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ Attribute.GetCustomAttribute(typeof(ExampleController), typeof(SubControllerActi

#### Q10. What is the difference between a.Equals(b) and a == b?

- [ ] The .Equals method compares reference identities while the == compares contents.
- [ ] The .Equals method compares primitive values while == compares all values.
- [x] The .Equals method compares contents while == compares references reference identity.
- [ ] The .Equals method compares reference type while == compares primitive value types.
- [ ] The .Equals method compares reference identities while the `==` compares contents.
- [ ] The .Equals method compares primitive values while `==` compares all values.
- [x] The .Equals method compares contents while `==` compares reference identity.
- [ ] The .Equals method compares reference type while `==` compares primitive value types

#### Q11. Which choice best describes a deadlock situation?

Expand Down

0 comments on commit 30ffdfa

Please sign in to comment.