csharp list

Code Example - csharp list

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

list csharp

                        
                                list<string,string
                            
                        
 

csharp array to list

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

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

to list csharp

                        
                                var arr = new int[] {1, 2, 3};
List<int> list = arr.ToList();
                            
                        
 

csharp list object

                        
                                List<object> Obj = New List<object>();

Obj.Add((cast any)object);
                            
                        
 

C Sharp List

                        
                                using System;  
using System.Collections.Generic;  
 
public class Example  
{  
    public static void Main(string[] args)  
    {  
        // Create a list of strings  
        var countries = new List<string>();  
        countries.Add("India");  
        countries.Add("Australia");  
        countries.Add("Japan");  
        countries.Add("Canada");  
        countries.Add("Mexico");  
 
        // Iterate list element using foreach loop  
        foreach (var country in countries)  
        {  
            Console.WriteLine(country);  
        }  
    }  
}