Convert Json Data into a noraml string in metro application? Convert Json Data into a noraml string in metro application? json json

Convert Json Data into a noraml string in metro application?


Do you mean

public class DataSource : INotifyPropertyChanged{public string AssignedTo{get;set;}

... public bool SysGenerated { get;set; } public string UserID { get;set; }

public DataSource(string jsonContent){// use reflection to create the class}}

or

string data = string.Concact(jsonContent);

?