I have a class with a property like this:
public class MyClass { private int MyProp { get; set; } and several methods that use MyProp. One methods sets it and all other methods read the value. What I'd like to do is once the value is set, make it so that other methods can't change its value.
Thanks for your suggestions.