C#C
C#3y ago
Ronnie

❔ ✅ C# lists

int[] arr = {1, 2, 3, 4, 5};
List<int> myList = new List<int>();
rather than using .Add() is there a way that i can put the array into myList in order to create the list from that
Was this page helpful?