0
C# Language
Difference between value types and reference types ?
1 Answer
+ 1
Reference simply means to "point at something using their names "
int a = 20;
int b = a;
in b, you made reference to a
Some values when assigned to a variable using reference might need to be boxed or cast first.