I discovered that you can start your variable name with a \'@\' character in C#. In my C# project I was using a web service (I added a web reference to my project) that was
The @ symbol allows you to use reserved keywords for variable name. like @int, @string, @double etc.
@
@int
@string
@double
For example:
string @public = "Reserved Keyword used for me and its fine";
The above code works fine, but below will not work:
string public = "This will not compile";