how to create a list csharp

Code Example - how to create a list csharp

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

list csharp

                        
                                list<string,string
                            
                        
 

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