#nullable enable
namespace Terminal.Gui;
///
/// Implementation of for
///
internal class StringHeld : IHeld
{
private readonly StringBuilder held = new ();
public void ClearHeld () { held.Clear (); }
public string HeldToString () { return held.ToString (); }
public IEnumerable