Can’t quite figure out how to use ScheduleSolution

Thanks David,

That helped me a lot. Really appreciate it.

For anyone wondering…

private void AllObjectsDeselected(object sender, RhinoDeselectAllObjectsEventArgs e)
{
  _document.ScheduleSolution(10, TriggerUpdate);
}

private void TriggerUpdate(GH_Document gh)
{
  _component.ExpireSolution(false);
}