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