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>();
谁能指导我?提前致谢。