Apache.NMS.Test.PrimitiveMapTest.CreateList C# (CSharp) Method

CreateList() protected static method

protected static CreateList ( ) : IList
return IList
        protected static IList CreateList()
        {
            ArrayList answer = new ArrayList();
            answer.Add("Item1");
            answer.Add("Item2");
            return answer;
        }