internal void DisplayActiveProcess()
 {
     if (_activeEvaluator != null)
     {
         _activeEvaluator.WriteOutput(_activeEvaluator.ProcessId.ToString());
     }
     else
     {
         CurrentWindow.WriteLine("None" + Environment.NewLine);
     }
 }
 internal void DisplayActiveProcess()
 {
     if (_activeEvaluator != null)
     {
         _activeEvaluator.WriteOutput(_activeEvaluator.ProcessId.ToString());
     }
     else if (CustomDebugAdapterProtocolExtension.CanUseExperimental())
     {
         NotSupported();
     }
     else
     {
         CurrentWindow.WriteLine("None" + Environment.NewLine);
     }
 }