Hello,
I'm trying to create a class of the genre:
[DataContract, Serializable]
public class XMLCM5050 : XmlApi
{
[DataMember]
public string $name{ get; set; }
[DataMember]
public string $age{ get; set; }
}
I know it's not possible to add the "$" symbol to the variable name. Is there any way to get this symbol in the variables when it is serialized?
Thank you in advance.