This commit is contained in:
TheXamlGuy
2024-04-26 22:27:31 +01:00
parent fd8a20c081
commit bab5f218e8
30 changed files with 164 additions and 108 deletions
+1 -4
View File
@@ -9,10 +9,7 @@ public class VaultHostCollection :
{
private readonly List<IComponentHost> hosts = [];
public void Add(IComponentHost host)
{
hosts.Add(host);
}
public void Add(IComponentHost host) => hosts.Add(host);
public IEnumerator<IComponentHost> GetEnumerator() =>
hosts.GetEnumerator();