Further reading
To learn more about the topics that were covered in this chapter, take a look at the following resources:
- Indexers: https://docs.microsoft.com/dotnet/csharp/programming-guide/indexers/.
- ConsoleSecrets: https://github.com/jasonshave/ConsoleSecrets.
- Equality Operators: https://docs.microsoft.com/dotnet/standard/design-guidelines/equality-operators.
- Interesting Performance Implications of C# 9 Records Equality Check: https://gmanvel.medium.com/interesting-performance-implications-of-c-9-records-equality-check-f0d0a3612919.
- Improving Struct Equality Performance in C#: http://dontcodetired.com/blog/post/Improving-Struct-Equality-Performance-in-C.
- String Equality and Performance in C#: https://rhale78.wordpress.com/2011/05/16/string-equality-and-performance-in-c/.
- Performance Implications of Default Struct Equality in C#: https://devblogs.microsoft.com/premier-developer/performance-implications-of-default-struct-equality-in-c/.
- Performance...