Shortcut Trick For Get & Set Property

Here I am Showing You That How You Can Get & Set Property Using Shortcut In Visual Studio.

write "prop" as shown in below image:

jz.gif

Then it will automatically display intelligence & from that select "prop" & then press TAB key from your keyboard then it will automatically add a code snippet of get & set property.

public int MyProperty { get; set; }


After that you can get & set your property like below code on button click event:
 

private void button1_Click(object sender, EventArgs e)

{
            private int newvar; 
            public int MyProperty
            {
               
get
                {
                    return newvar;
                }
               
set
                {
                    newvar=<<Set Here your Value in integer>>;
                }
            }
}

You can also set & get property in other data type by changing the data type instead of "int" use your data type.
 

Next Recommended Reading Abstract Property In C# Language