public void Unregister(Line Line) { Command command = new Command(); command.Add = false; command.Line = Line; QueueThreadHelper.SafeEnqueue(m_Commands, command); }
public void Register(Line Line) { var command = new Command(); command.Add = true; command.Line = Line; QueueThreadHelper.SafeEnqueue(m_Commands, command); }