To return the list in JSON format
        Posted  
        
            by 
                Reshma
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Reshma
        
        
        
        Published on 2013-11-12T09:22:33Z
        Indexed on 
            2013/11/12
            9:54 UTC
        
        
        Read the original article
        Hit count: 348
        
Below is my code,
List<string> modified_listofstrings = new List<string>();
string sJSON = "";
System.Web.Script.Serialization.JavaScriptSerializer jSearializer =
                 new System.Web.Script.Serialization.JavaScriptSerializer();
resulted_value = final_resulted_series_name + ":" + period_name + ":" + period_final_value;
modified_listofstrings.Add(resulted_value);
json_resultedvalue = JsonConvert.SerializeObject(resulted_value);
modified_listofstrings.Add(json_resultedvalue);
sJSON = jSearializer.Serialize(modified_listofstrings);
return sJSON;
But on following line ,
sJSON = jSearializer.Serialize(modified_listofstrings);
I am getting an error as Cannot implicitly convert type string to system.collection.generic.list
© Stack Overflow or respective owner