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

51,887 answers

573 users

How to use simple struct in C#

1 Answer

0 votes
using System;   
 
struct myStruct {
    private int n;
    
    public int number {
        get
        {
            return n;
        }
        set
        {
            n = value;
        }
    }
    
    public void Print() {
        Console.WriteLine("n = {0}", n);
    }
}

class Program
{
    static void Main(string[] args)
    {
        myStruct mystruct = new myStruct();
 
        mystruct.number = 300;
        Console.WriteLine(mystruct.number);
 
        mystruct.Print();
    }
}
 
 
/*
run:
     
300
n = 300
 
*/

 



answered Apr 27, 2017 by avibootz
edited Mar 23, 2025 by avibootz

Related questions

2 answers 234 views
1 answer 99 views
3 answers 217 views
1 answer 168 views
168 views asked Oct 7, 2014 by avibootz
2 answers 218 views
218 views asked Apr 25, 2017 by avibootz
1 answer 137 views
1 answer 121 views
121 views asked Dec 25, 2016 by avibootz
...