© 2026 Hedgehog Software, LLC
List<string>
private readonly object _lock = new(); private readonly List<string> _strings = []; public IReadOnlyList<string> Strings { get { lock(_lock) return [.._strings]; } }