We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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;
The text was updated successfully, but these errors were encountered:
Same as for new expressions. Going to add this exception (as it seems useful to me).
Sorry, something went wrong.
No branches or pull requests
We should suppress the errors when there is explicit casting. E.g.:
This should be OK. Even the below one?
The text was updated successfully, but these errors were encountered: