Users Pricing

forum

Home Forums problem in get and set the data field – MindStick

problem in get and set the data field

Anonymous User 3117 29 Jan 2011
we write this code but give the exception 
 class Program
    {
        static void Main(string[] args)
        {
            aa a = new aa();
            a.ff = 19;
        }
    }
    public class aa
    {
        int f1;
        public int ff
        {
            set
            {
                System.Console.WriteLine("in set " + value);
                f1 = value;
            }
        }
    }
what is the accurate solution of its?problem in get and set the data field

1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md