creatw list of int in csharp

Code Example - creatw list of int in csharp

                
                        List<int> myValues = new List<int>(new int[] { 1, 2, 3 } );
                    
                
 

csharp declare an int list

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

Related code examples