Since the release of 7.0 version for C#, we’ve seen many small, yet useful features added to the language, aiming to aid developers, directly or indirectly. A new keyword was added in version 7.2, the in
keyword, which makes the reference semantics of the language richer. In this post, I will explore this new keyword, along with readonly
structs and the ref readonly
modifier.
Month: July 2018

Learning data structures – Search algorithms for arrays
Which are the common techniques to search for a key in an array? This is Learning data structures and in today’s series I will go through the fundamental search algorithms for arrays.