9 references to First
System.Speech (9)
Internal\SrgsCompiler\Graph.cs (3)
744
Arc previousArc = startState.InArcs.
First
;
778
Arc pNextArc = endState.OutArcs.
First
;
834
Arc refArc = arcs.
First
;
Internal\SrgsCompiler\Item.cs (2)
92
System.Diagnostics.Debug.Assert(newEndState.OutArcs.CountIsOne && Arc.CompareContent(_endArc, newEndState.OutArcs.
First
) == 0);
93
_endArc = newEndState.OutArcs.
First
;
Internal\SrgsCompiler\ParseElementCollection.cs (2)
111
startArc = startState.OutArcs.
First
;
144
endArc = endState.InArcs.
First
;
Internal\SrgsCompiler\State.cs (2)
406
Arc? arc1 = state1._outArcs != null && !state1._outArcs.IsEmpty ? state1._outArcs.
First
: null;
407
Arc? arc2 = state2._outArcs != null && !state2._outArcs.IsEmpty ? state2._outArcs.
First
: null;