How does variable assigning (setting) and retrieve value works in the background? For example:
{
int myValue;
myValue = 5; //here we assign value (set)
Console.WriteLine(myValue); // here we retrieve value
}
So here we first declare value. In next line we assign value (does it work the same way as setting the property). Also, when retrieving value, does it work the same way as get in properties.
Next question:
If we have TextBox control, which has Text property.
Lets say, name of text box control is myTextBox
.
myTextBox.Text = "Michael"; // here we set value
string result = myTextBox.Text; // here we retrieve (get) value
Does this works same as { get; set; }
method in fields-properties?
You can look at the IL if you want. Here's a simple sample using linqpad:
and here's the IL for it:
nothing too fancy happening there, if that is what you were asking.
The point of having properties is to avoid having public variables, and to enable you to encapsulate (read hide), your implementation.
So, using a property, you can in the setter alter it, apply validation logic, change other variables, etc, (you shouldn't, btw), or better yet, in the future, if you need to change the backing variable type, you can do it without breaking public interfaces.