To ref or not to ref
- by nmarun
So the question is what is the point of passing a reference type along with the ref keyword? I have an Employee class as below: 1: public class Employee
2: {
3: public string FirstName { get; set; }
4: public string LastName { get; set; }
5:
6: public override string ToString()…