public class emp
{
public int id { get; set; }
public string name { get; set; }
}
public class employee
{
public List<emp> Result { get; set; }
}
上記のクラスに変換したい
List<employee> e=new List<employee>();
に
List<string> onj =new List<string>();
誰かが私を導くことができますか?前もって感謝します。