- I live in Gurgaon and build Cloud based IT Applications using Salesforce & Microsoft Technologies. - Prady
Category Archives: C#
C# FAQs – Part 1
What is the benefits of using C# Properties over Fields? Many benefits- 1. Properties are used for data binding; Fields aren’t. 2. Encapsulation can be achieved with Properties, not with Fields. An example below- public int Order { get { … Continue reading
Posted in C#, Interview Questions
Leave a comment