Tag out keyword

Difference between ref and out keywords in C#

ref and out are pretty much like the pointers as in C/C++, they deal with the memory location of the object instead of the object directly.Mostly ref and out keywords are used in the method’s parameters ref void myFunction(ref Student obj); ref means that…