is operator + object casting or as operator + null comparison?
This week I found in the source code of one of our projects that people use “is” operator + object casting in places that they can use “as” operator + null comparison.
1: // "is" operator + object casting
2: if (myObj is MyObject)
3: {
4: [...]