I just came across an unknown concept of c# for me. Can anyone tell me what the purpose of an internal set property is? What is its use? I know internal keyword is used for work
It means that the property can only be set by code that resides within the same assembly as the class delcaring the property.