using System.Collections.Generic;
public string Label_en { get; set; }
public string FieldType { get; set; }
public string FieldName { get; set; }
public string Validation { get; set; }
public string FieldValue {
return string.Join(", ", this.value);
public FieldList[] row { get; set; }
public static void Main()
var fc = new FieldList(){
Value = new List<string>(){"ZZZZ", "SSS"}
var fc1 = new FieldList(){
Console.WriteLine(fc.FieldValue);
Console.WriteLine(fc1.FieldValue);