How can I make a read only version of a class?

Posted by Eric on Stack Overflow See other posts from Stack Overflow or by Eric
Published on 2010-04-27T20:14:53Z Indexed on 2010/04/27 20:23 UTC
Read the original article Hit count: 278

Filed under:
|
|

I have a class with various public properties which I allow users to edit through a property grid. For persistence this class is also serialized/deserialized to/from an XML file through DataContractSerializer.

Sometimes I want to user to be able to save (serialize) changes they've made to an instance of the class. Yet at other times I don't want to allow the user to save their changes, and should instead see all the properties in the property grid as read only. I don't want to allow users to make changes that they'll never be able to save later. Similar to how MS Word will allow users to open documents that are currently opened by someone else but only as read only.

My class has a boolean property that determines if the class should be read-only, but is it possible to use this property to somehow dynamically add a read-only attributes to the class properties at run-time? If not what is an alternative solution? Should I wrap my class in a read-only wrapper class?

© Stack Overflow or respective owner

Related posts about readonlyattribute

Related posts about c#