Show / Hide Table of Contents

Class IEnumerableExtensions

Wrapper for extension methods on the IEnumerable interface. You should never have to refer directly to this class.

Inheritance
Object
IEnumerableExtensions
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: Mangrove.MetricSetSyntaxTree.Extensions
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
Type Name Description
IEnumerable<T> items
Func<T, String> selector
String separator
Returns
Type Description
String
Type Parameters
Name Description
T
  • View Source
Back to top Generated by DocFX