Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# create list of objects

public class Car
    {
        private int intYear;
        private string strCar;
        private DateTime dtRelease;
        public Car(int intYear, string strCar, DateTime dtRelease)
        {
            this.intYear = intYear;
            this.strCar = strCar;
            this.dtRelease = dtRelease;
        }

        public int IntYear { get => intYear; set => intYear = value; }

        public string StrCar { get => strCar; set => strCar = value; }

        public DateTime DtRelease { get => dtRelease; set => dtRelease = value; }

    }

static void Main(string[] args)
        {
            List<Car> objCars = new List<Car>();
            objCars.Add(new Car(2022, "BMW", new DateTime(2017, 3, 1).Date));
            objCars.Add(new Car(2022, "Honda", new DateTime(2019, 2, 1).Date));
            objCars.Add(new Car(2022, "Mercedes", new DateTime(1998, 1, 1).Date));

            foreach (Car cars in objCars){
                Console.WriteLine("----------------");
                Console.WriteLine(cars.IntYear);
                Console.WriteLine(cars.StrCar);
                Console.WriteLine(cars.DtRelease);
            }
        }
//Output:

//----------------
//2022
//BMW
//01.03.2017 00:00:00
//----------------
//2022
//Honda
//01.02.2019 00:00:00
//----------------
//2022
//Mercedes
//01.01.1998 00:00:00

Source by devarama.com #
 
PREVIOUS NEXT
Tagged: #create #list #objects
ADD COMMENT
Topic
Name
9+8 =