Open
Description
We should suppress the errors when there is explicit casting. E.g.:
var product = (Product)GetProduct();
This should be OK. Even the below one?
var product = GetProduct() as Product;
We should suppress the errors when there is explicit casting. E.g.:
var product = (Product)GetProduct();
This should be OK. Even the below one?
var product = GetProduct() as Product;