InterviewSolution
| 1. |
Explain The 3 Types Of Properties In C# With An Example? |
|
Answer» 1. Read Only PROPERTIES: Properties WITHOUT a set accessor are considered read-only. In the above example FullName is read only property. 1. Read Only Properties: Properties without a set accessor are considered read-only. In the above example FullName is read only property. |
|