Table of Contents

Class LinqExtensions

Namespace
FellowOakDicom.Tools
Assembly
fo-dicom.core.dll
public static class LinqExtensions
Inheritance
LinqExtensions
Inherited Members

Methods

Diff<S, T>(IEnumerable<S>, Func<S, S, T>)

public static IEnumerable<T> Diff<S, T>(this IEnumerable<S> input, Func<S, S, T> difference)

Parameters

input IEnumerable<S>
difference Func<S, S, T>

Returns

IEnumerable<T>

Type Parameters

S
T

FilterByType<T>(IEnumerable<object>)

public static IEnumerable<T> FilterByType<T>(this IEnumerable<object> input)

Parameters

input IEnumerable<object>

Returns

IEnumerable<T>

Type Parameters

T

IsOneOf<T>(T, params T[])

public static bool IsOneOf<T>(this T value, params T[] values)

Parameters

value T
values T[]

Returns

bool

Type Parameters

T