MapperMapListT1(IEnumerableObject, MapperOption) 方法
将对象集合映射为指定类型的集合。
命名空间: TouchSocket.Core程序集: TouchSocket.Core (在 TouchSocket.Core.dll 中) 版本:4.0.0-beta.143+5fcca7a4e70968794985dc3793adc50531308be6
public static IEnumerable<T1> MapList<T1>(
this IEnumerable<Object> list,
MapperOption option = null
)
where T1 : class, new()
<ExtensionAttribute>
Public Shared Function MapList(Of T1 As {Class, New}) (
list As IEnumerable(Of Object),
Optional option As MapperOption = Nothing
) As IEnumerable(Of T1)
[<ExtensionAttribute>]
static member MapList :
list : IEnumerable<Object> *
?option : MapperOption
(* Defaults:
let _option = defaultArg option null
*)
-> IEnumerable<'T1> when 'T1 : not struct, new()
- list IEnumerableObject
- 待映射的对象集合。
- option MapperOption (Optional)
- 映射选项。
- T1
- 目标类型。
IEnumerableT1映射后的指定类型的集合。在 Visual Basic 和 C# 中,这个方法可以当成为类型
IEnumerableObject 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。