EightBitNet/Fuse/TestEvents.cs
Adrian Conlon 5185346b8d Whoops: missed some updated files caught up in the stlecop updates.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-07-21 13:12:28 +01:00

31 lines
795 B
C#

// <copyright file="TestEvents.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace Fuse
{
using System.Collections.Generic;
using System.Collections.ObjectModel;
public class TestEvents
{
private readonly List<TestEvent> container = new List<TestEvent>();
public ReadOnlyCollection<TestEvent> Container => this.container.AsReadOnly();
public void Parse(Lines lines)
{
var success = false;
do
{
var e = new TestEvent();
success = e.TryParse(lines);
if (success)
{
this.container.Add(e);
}
}
while (success);
}
}
}