コード例 #1
0
        public string[] GetInfo()
        {
            List <string> list = new List <string>();

            while (InfoQueue.Any())
            {
                list.Add(InfoQueue.Dequeue());
            }

            return(list.ToArray());
        }