#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