How can I create the ReadOnly property outside the assembly (DLL) for people using the DLL, but still be able to populate this property from the assembly to read them?
For example, if I have a Transaction object that needs to populate a property in the Document object (which is a child of the Transaction strong> class) when something happens in the Transaction object , but I just want the developer to use my DLL to be able to read this property and do not change it (it should be changed only from the DLL itself).
source
share