what is property
-
Good morning! iam a student learning c#. Can any one tell me what is a property and whats the difference between property and method
(M.BALA SUBRAMANYAM)
-
Good morning! iam a student learning c#. Can any one tell me what is a property and whats the difference between property and method
(M.BALA SUBRAMANYAM)
-
Good morning! iam a student learning c#. Can any one tell me what is a property and whats the difference between property and method
(M.BALA SUBRAMANYAM)
Properties control access to fields within a class: //Field private int number = 0; //Property public int Number { get { return this.number; } set { this.number = value; } } this allows you to control wether a field can be written to or read from and can perform processing if needed. A method contains code: private string SomeMethod(strin input) { string output = input + "123"; return output; }