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

51,890 answers

573 users

How to use method in struct with C#

1 Answer

0 votes
using System;

struct Student {
    public int id;
    public string name;

    public Student(int _id, string _name) {
        id = _id;
        name = _name;
    }
    public void Show() {
        Console.WriteLine($"id: {this.id} Name: {this.name}");
    }
}

class Program
{
    static void Main(string[] args)
    {
      Student s = new Student(34678, "Emma");
       
      s.Show();
    }
}

 
 
/*
run:
 
id: 34678 Name: Emma
 
*/

 



answered Dec 15, 2020 by avibootz

Related questions

1 answer 137 views
1 answer 125 views
125 views asked Oct 25, 2022 by avibootz
1 answer 92 views
1 answer 121 views
1 answer 126 views
126 views asked Dec 15, 2020 by avibootz
1 answer 128 views
128 views asked Nov 22, 2020 by avibootz
1 answer 150 views
...