I got this code which was written in C++:
static double e[66];
if (!e[0]) {
// Do Something
}
It does not compile in Visual Studio saying that Operator '!' cannot be applied to operand of type 'double'.
What is the propar way to write it in C#?