xxxxxxxxxx
Integer[] array = new Integer[] {
23, 54, 12
};
java.util.List<Integer> list = java.util.Arrays.asList(array);
System.out.println(list);
xxxxxxxxxx
Integer[] spam = new Integer[] { 1, 2, 3 };
List<Integer> list = Arrays.asList(spam);
xxxxxxxxxx
Integer[] numbers = new Integer[] { 1, 2, 3 };
List<Integer> list = Arrays.asList(numbers);
xxxxxxxxxx
String[] arr = { 1, 2, 3, 4 }
ArrayList<Integer> list = new ArrayList<Integer>();
Collections.addAll(list, arr);
// 'list' now contains [1, 2, 3, 4]
xxxxxxxxxx
/*
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);
xxxxxxxxxx
int[] ints = new int[] {1,2,3,4,5};
Arrays.stream(ints).boxed().toList();
xxxxxxxxxx
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));
}
}