create List csharp

Code Example - create List csharp

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

list csharp

                        
                                list<string,string
                            
                        
 

csharp array to list

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

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>();
                            
                        
 

how to create a list csharp

                        
                                C# By Magnificent Mamba on Dec 23 2019
IList<int> newList = new List<int>(){1,2,3,4};
                            
                        
 

csharp list declaration

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

csharp list

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