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
given a property declared public string MyString {get; internal set;}
this means that
public string MyString
)internal set;
)