2
Hello,
I’m trying to create a gender class:
[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 variables' names. Is there any way to get that symbol in the variables when it is serialized?
Thanks in advance.
And why you want this?
– Maniero