csharp array to list

Code Example - csharp array to list

                
                        var intArray = new[] { 1, 2, 3, 4, 5 };
var list = new List<int>(intArray);
                    
                
 

csharp list to array

                        
                                string[] array = list.ToArray();
                            
                        
 

array to list C

                        
                                using System.Linq;

int[] ints = new [] { 10, 20, 10, 34, 113 };

List<int> lst = ints.OfType<int>().ToList(); // this isn't going to be fast.

OR

List<int> lst = new List<int> { 10, 20, 10, 34, 113 };
                            
                        
 

create List csharp

                        
                                using System.Collections.Generic
//type is your data type (Ej. int, string, double, bool...)
List<type> newList = new List<type>();
                            
                        
 

make a list csharp

                        
                                IList<int> newList = new List<int>(){1,2,3,4};
                            
                        
 

decalre an int list mvc

                        
                                List<int> intList = new List<int>();
                            
                        
 

csharp list

                        
                                // This will create a new list called 'nameOfList':
var nameOfList = new List<string> 
{
  "value1",
  "value2",
  "value3"
};