How can you recognize a property in C#?
Experience Level: Junior
Tags: C#
Answer
Whenever you see a dot character in the code, have a look at the right hand side from it. If you see a string that is not ended by opening rounded brackets, you very likely found a property.
In the example below, you can see that the value 10 is set to the the property VolumeLevel of the object that is stored in a variable myRadio. On the next line the value is retrieved from this property and it is stored to the newly declared variable volumeLevel.
Related C# job interview questions
What is the 'new' keyword used for in C#?
C# JuniorHow can you assign a value to a property in C#?
C# JuniorWhat is a property in C#?
C# JuniorWhat is a class instance in C#?
C# JuniorWhat is a difference between value type and reference type?
C# Junior