Code inspection: Use unsigned right shift operator '>>>'

Last modified: 08 May 2024

This inspection recognizes a cumbersome code pattern that C# developers had to write to perform the unsigned right shift for signed types. It suggests replacing such patterns with the unsigned right shift operator >>>, introduced in C# 11.