将ObjectResult <string>转换为ObjectModel.Collection <string> </string> </string>

时间:2011-12-27 12:51:03

标签: c#

我的数据合同中的一个数据成员是System.Collections.ObjectModel.Collection<string>类型。 执行函数导入后,我得到类型为ObjectResult<string>的结果。如何将objectresult<string>转换为ObjectModel.Collection<string>。有没有直接演员?

1 个答案:

答案 0 :(得分:3)

ObjectModel.Collection<string> col = new ObjectModel.Collection<string>(objectResult.ToList());