Is there any way to enable compiler warnings for implicit conversions in C#?
Recently been debugging for over an hour until I realized I had the following code:
double = int / int;
which didn't quite work as intended. Compiler does not show any warning for it, even at warning level 4. I'm working with Microsoft Visual Studio 2013.