Helper function to let you enumerate over two IEnumerableT sequences.
Namespace:
Demo3D.Common
Assembly:
Demo3D.Common (in Demo3D.Common.dll) Version: 11.0.0.7658
Syntaxpublic static IEnumerable<T> Enumerate<T>(
IEnumerable<T> a,
IEnumerable<T> b
)
Parameters
- a
- Type: System.Collections.GenericIEnumerableT
First IEnumerableT. - b
- Type: System.Collections.GenericIEnumerableT
Second IEnumerableT.
Type Parameters
- T
- Type.
Return Value
Type:
IEnumerableTCombined
IEnumerableT.
See Also