Click or drag to resize

TraceBufferClientToEventGroup Method

Groups all events by their Timestamp. All events with the same Timestamp are stored in another dictionary with their EventType as key.

Namespace: RAYLASE.SPICE3.TraceBuffer
Assembly: RAYLASE.SPICE3.TraceBufferLib (in RAYLASE.SPICE3.TraceBufferLib.dll) Version: 3.4.1
Syntax
C#
public static Dictionary<ulong, Dictionary<TraceEventType, TraceEvent>> ToEventGroup(
	IEnumerable<TraceEvent> events
)

Parameters

events  IEnumerableTraceEvent
The events that should be grouped.

Return Value

DictionaryUInt64, DictionaryTraceEventType, TraceEvent
Dictionary containing the grouped events.
See Also