I just went to write the line...
if (!e.PeriodicData.Keys.Contains(process))
{
}
but did a typo on "!" and hit "@" instead. eg
if (@e.PeriodicData.Keys.Contains(process))
{
}
I was expecting intellisense to flipout but it didn't. So I compiled and it compiled successfully.
Its not an operator, so what is "@"? What does it do?