mp3lib_Tests.Classes_for_tests.TestCommunicator.TestCommunicator C# (CSharp) 메소드

TestCommunicator() 공개 메소드

public TestCommunicator ( IEnumerable userInput ) : System.Collections.Generic
userInput IEnumerable
리턴 System.Collections.Generic
        public TestCommunicator(IEnumerable<string> userInput)
        {
            UserInput = new Queue<string>();
            ProgramOutput = new List<string>();

            foreach (var str in userInput)
            {
                UserInput.Enqueue(str);
            }
        }