Class EnumerableUtils
Contains static methods related to IEnumerable.
public static class EnumerableUtils
- Inheritance
-
EnumerableUtils
Methods
- EqualsRange<T>(T, IEnumerable<T>)
Gets whether
value
equals any item in theitems
.
- ForEach(IEnumerableTree, Action<object>)
Calls
func
action for the each item of the IEnumerableTree.
- ForEach<T>(IEnumerable<T>, Action<T>)
Calls specified action for the each item of the IEnumerable<T>.
- GetChildren<T>(IEnumerableTree, object)
Enumerates children items of the specified item.
- GetItems<T>(IEnumerableTree)
Enumerates root items of the IEnumerableTree.
- InsertPrefix(IEnumerable<string>, string)
Inserts
prefix
in the beginning of the each string initems
.