Possible duplicates:
What does placing @ in front of a C # variable name do? What does the use / value of the @ symbol mean in variable names in C #?
As you can imagine, Googling or Binging for any phrase containing "@" is difficult.
When creating a new web service, one of the members of the imported C # proxy class has the @ prefix. For example:
plan.@event = new Insurance.Event();
I assume this is a Visual Studio method that resolves potential conflicts with reserved words, because "event" is a reserved word. Changing a property in the web service interface to something other than an "event" (ie, "Healthevent") removes @ from the property. Is this the correct assumption?
c # web-services
Mike chess
source share