Before that I try to ask, i searched through the net but could not find what I am looking for.
I am trying to convert the field_values into string in C#.
type of fields_value :
public List<List<string>> field_values { get; set; }
this is my code that I want to modify it to do my work.
string x = pi.field_values[0];
I tried to do it with code below that does not work.
string x=convert.tostring(pi.field_values[0]);
any idea?
[0]you access the first list of strings, not a single string.pi.field_values[0][0].ToString()