While coding in C#, I by mistake added a strudel sign before a variable in if statement (instead of exclamation mark).
bool b = false;
if (@b)
{
}
I surprised it compiled successfully without any error.
I wonder: What is the meaning of the above code?