/*
Get the Array to be converted.
Create the List by passing the Array as parameter in the constructor of the List with the help of Arrays. asList() method.
Return the formed List.
*/
String[] namedata = { "ram", "shyam", "balram" };
List<String> list = Arrays.asList(namedata);
import java.util.*;
public class Main {
public static void main(String args[]){
List<String> list = new ArrayList<String>();
list.add("Apple");
list.add("Orange");
list.add("Banana");
System.out.println("Contents of list :"+list);
String[] myArray = new String[list.size()];
list.toArray(myArray);
for(int i=0; i<myArray.length; i++){
System.out.println("Element at the index "+i+" is :"+myArray[i]);
}
}
}
public class Main {
public static void main(String[] args) {
String[] array = {"Dog", "Cat", "Horse", "Turtle"};
ArrayList<String> array1 = new ArrayList<>();
for (int i = 0; i < array.length; i++) {
array1.add(array[i]);
}
System.out.println(array1);
}
using System;
using System.Collections.Generic;
using System.Linq;
public class Example
{
public static void Main()
{
int[] array = { 1, 2, 3, 4, 5 };
List<int> list = array.ToList();
// List<int> list = array.OfType<int>().ToList();
// List<int> list = array.Cast<int>().ToList();
Console.WriteLine(String.Join(",", list));
}
}