Hi all,
i have string in following format ex:{xType:FORM}{xID:000}{xEmpID:12356}{xDeparmentID:AA}{xStandard1:TN}{xColumn:Task}
how to get those values in my own class members.
public class Data
{
[DataMember(Name = "Name", IsRequired = true, Order = 00)]
public string DataName { get; set; }
[DataMember(Name = "Value", IsRequired = true, Order = 00)]
public string DataValue { get; set; }
}
how to get those string values in my own class.
Ganesh