Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to define, initialize and print a list of objects in C#

2 Answers

0 votes
using System;
using System.Collections.Generic;

namespace ConsoleApplication_C_Sharp
{

    class Actors
    {
        public int age { get; set; }
        public string name { get; set; }
        public override string ToString()
        {
            return "Actor: " + name + " " + age;
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            List<Actors> list = new List<Actors>()
            {
                new Actors(){ age = 83, name = "Michael Caine"},
                new Actors(){ age = 76, name = "Al Pacino"}
            };

            foreach (var item in list)
                Console.WriteLine(item);
        }
    }
}


/*
run:
      
Actor: Michael Caine 83
Actor: Al Pacino 76

*/

 



answered Dec 27, 2016 by avibootz
edited Dec 27, 2016 by avibootz
0 votes
using System;
using System.Collections.Generic;

namespace ConsoleApplication_C_Sharp
{

    class Actors
    {
        public int age { get; set; }
        public string name { get; set; }
        public override string ToString()
        {
            return "Actor: " + name + " " + age;
        }
    }

    class Program
    {
        static void Main(string[] args)
        {

            List<Actors> list = new List<Actors>();
            list.Add(new Actors(){ age = 83, name = "Michael Caine" });
            list.Add(new Actors(){ age = 76, name = "Al Pacino" });

            foreach (var item in list)
                Console.WriteLine(item);
        }
    }
}


/*
run:
      
Actor: Michael Caine 83
Actor: Al Pacino 76

*/

 



answered Dec 27, 2016 by avibootz

Related questions

2 answers 200 views
5 answers 293 views
5 answers 289 views
1 answer 97 views
1 answer 170 views
...