using System.Collections.Generic;
public static void Main()
string[] array = new string[] { "INDIA", "USA", "UK" };
List<string> lst=new List<string>();
foreach(string s in lst){
Console.WriteLine("Add some more elements from List");
List<string> lstone=new List<string>();
foreach(string s in lst){
Console.WriteLine("Length of the list is : {0}", + count);
if (lst.Contains("Banana"))
Console.WriteLine("Length of array after data is removed");
Console.WriteLine("Length of the list is : {0}", + count);
foreach(string s in lst){
Console.WriteLine("Copy the elements from Array to list");
List<string> ListTwo = new List<string>(array);
Console.WriteLine("Length of the list is : {0}", + count);
foreach(string s in ListTwo){
foreach(string s in lst){