I think my question is different from this: What's the @ in front of a string in C#?
I work in VB.net, so this may be some simple thing in C#, but I am not aware of this.
I got the following code where I have 10 XML inside a string variable. Please advice what @ symbol is needed in front of the claimsList string variable when calling LoadXml method in the code snippet below:
private void UploadNewClaims(PMAUser grumble, string companyAbbreviation, string claimsList)
{
var claimDoc = new System.Xml.XmlDocument();
claimDoc.LoadXml(@claimsList);