下記へ変換するにはフィールド配列Dictionary<string,column> (i.e. Dictionary of name property of column class as key and value property of dictionary as column object)
として配列を配列します。あなたはこのためにLINQラムダを使用することができますどのように配列を辞書に変換する
public class columninfo
{
public string name {get;set;}
public column[] fieldList {get;set;}
}
public class column
{
public string name {get;set;}
public string fieldname {get;set}
public string format {get;set;}
}
@TimSchmelterあなたは親クラスの名前について取り上げているので、彼は内部の配列について尋ねました –