我的数据合同中的一个数据成员是System.Collections.ObjectModel.Collection<string>
类型。
执行函数导入后,我得到类型为ObjectResult<string>
的结果。如何将objectresult<string>
转换为ObjectModel.Collection<string>
。有没有直接演员?
答案 0 :(得分:3)
ObjectModel.Collection<string> col = new ObjectModel.Collection<string>(objectResult.ToList());