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

51,776 answers

573 users

How to use static constructor in struct with C#

1 Answer

0 votes
using System;
 
struct Student {
    public int id;
    public string name;
 
    static Student() {
        Console.WriteLine("struct Student");
    }
 
    public Student(int _id, string _name) {
        id = _id;
        name = _name;
    }
}
 
class Program
{
    static void Main(string[] args)
    {
      Student s = new Student(34678, "Emma");
       
      Console.WriteLine(s.id);
      Console.WriteLine(s.name);
    }
}
  
  
  
/*
run:
  
struct Student
34678
Emma
  
*/

 



answered Dec 15, 2020 by avibootz
edited Dec 15, 2020 by avibootz

Related questions

1 answer 180 views
1 answer 109 views
4 answers 262 views
1 answer 92 views
1 answer 135 views
1 answer 117 views
1 answer 194 views
...