I just went to write a line ...
if (!e.PeriodicData.Keys.Contains(process))
{
}
but made a typo on "!" and click "@" instead. eg,
if (@e.PeriodicData.Keys.Contains(process))
{
}
I expected intellisense to roll over, but it is not. So I compiled and compiled it successfully.
This is not an operator, but what is @? What does it do?
source
share