Code inspection: Redundant verbatim prefix
This inspection reports an @ verbatim identifier prefix when the identifier does not need escaping. Removing it makes the code simpler without changing its meaning.
Example
void M(int @count)
{
Use(@count);
}
void M(int count)
{
Use(count);
}
Quick-fix
The quick-fix removes the redundant @ prefix from the identifier.
13 April 2026