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,885 questions

51,811 answers

573 users

How to initialize an array of classes in C#

1 Answer

0 votes
using System;

class User {
    public string Name { get; set; }
    public int age { get; set; }
}

class Program
{
    static void Main() {
        User[] users = {
                new User { Name = "James T. Kirk", age = 51 },
                new User { Name = "Spock", age = 68 },
                new User { Name = "Leonard McCoy", age = 46 },
            };

        foreach (User user in users)
            Console.WriteLine(String.Format("{0}: {1}", user.Name, user.age));
        }
}



/*
run:

James T. Kirk: 51
Spock: 68
Leonard McCoy: 46

*/

 



answered Mar 12, 2021 by avibootz

Related questions

1 answer 157 views
157 views asked Mar 12, 2021 by avibootz
1 answer 195 views
1 answer 240 views
1 answer 180 views
2 answers 215 views
1 answer 184 views
...