Class IEnumerableExtensions
Wrapper for extension methods on the IEnumerable interface.
You should never have to refer directly to this class.
Inheritance
IEnumerableExtensions
Assembly: MetricSetSyntaxTree.dll
Syntax
public static class IEnumerableExtensions
Methods
View Source
Join<T>(IEnumerable<T>, Func<T, String>, String)
Join the output of items
.Select(selector
)
,
joined using selector
, which defaults to a newline.
Declaration
public static string Join<T>(this IEnumerable<T> items, Func<T, string> selector = null, string separator = null)
Parameters
Returns
Type Parameters