Answers for "combine two arraylist c#"

C#
0

combine two arraylist c#

class Program

    {
        static void Main(string[] args)
        {
            ArrayList CountryList1 = new ArrayList();
            ArrayList CountryList2 = new ArrayList();

            CountryList1.Add("Pakistan");
            CountryList1.Add("Nepal");
            CountryList2.Add("Butan");
            CountryList2.Add("Srilanka");
          
            CountryList1.AddRange(CountryList2);
        }

    }
Posted by: Guest on June-18-2020

C# Answers by Framework

Browse Popular Code Answers by Language