public virtual void Commence() { for (int i = 0; i < _listeners.Count; i++) { IDebugEventListener listener = _listeners[i]; listener.Commence(); } }
public void Commence() { for (int i = 0; i < listeners.Count; i++) { IDebugEventListener listener = (IDebugEventListener)listeners[i]; listener.Commence(); } }
protected virtual void Handshake() { string antlrLine = @in.ReadLine(); string[] antlrElements = GetEventElements(antlrLine); version = antlrElements[1]; string grammarLine = @in.ReadLine(); string[] grammarElements = GetEventElements(grammarLine); grammarFileName = grammarElements[1]; Ack(); listener.Commence(); // inform listener after handshake }
public virtual void Commence() { _listener.Commence(); }
public void Commence() { listener.Commence(); }