CSV_Viewer.buffer.LineBuffer.Buffer_lines C# (CSharp) Метод

Buffer_lines() публичный Метод

public Buffer_lines ( IEnumerable lines, System.Action enough_data_buffered_to_continue ) : void
lines IEnumerable
enough_data_buffered_to_continue System.Action
Результат void
        public void Buffer_lines(IEnumerable<string> lines, Action enough_data_buffered_to_continue)
        {
            foreach(var l in lines) _container.Data.AddLine(l);
            enough_data_buffered_to_continue();
        }