1
Reply

As we aware that properties are three types, read, write, and ReadWrite. Give me examples on all types of props?

vikas gupta

vikas gupta

15y
3.8k
0
Reply

    This is a example of three types of properties : public int ReadOnlyProperty { get; private set; } public int WriteOnlyProperty { private get; set; } public int ReadWriteProperty { get; set; }