using System; using System.Collections.Generic; using System.Text; namespace DaoMqPump2 { class UppercaseContainer { List container = new List(); public void add(string newstr) { container.Add( newstr.ToUpper() ); } public bool contains(string search) { return container.Contains(search.ToUpper()); } } }