0 votes
in C Sharp by

What is the difference between “out” and “ref” parameters in C#?

1 Answer

0 votes
by
“out” parameter can be passed to a method and it need not be initialized where as “ref” parameter has to be initialized before it is used.
...