C# Right and Left shift operator
The Right Shift (>>) operation is used for shifting the positions forwards right side.
The Left Shift (<<) operation is used for shifting the bits position towards left side.
Example
10 is Right Shifted to 1 position Result:5
10 is Left Shifted to 1 position Result:20
__