Click or drag to resize
ParallelMusicCollectionSelectT Method (FuncT, MusicObject)
Projects all music objects of specified type into a MusicObject of the same structure.

Namespace: MidiGremlin
Assembly: MidiGremlin (in MidiGremlin.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public override MusicObject Select<T>(
	Func<T, MusicObject> selector
)
where T : MusicObject

Parameters

selector
Type: SystemFuncT, MusicObject
A transform function to apply to each element.

Type Parameters

T
The MusicObject subtype to modify.

Return Value

Type: MusicObject
A MusicObject of identical structure that is the result of invoking the transform function of all elements of type T.
See Also