difference between attributes (properties) of OUT and Ref ?
What is the difference between attributes (properties) of OUt and Ref Keyword in C#?.Do these Keywords belong to the C# new features?.Can anyone tell me the difference between the functionality of OUT and Ref keyword.

Bryian TanPosted Jul 14, 2018, 12:08 AM
Packiaraj SanthiyaguPosted Jul 13, 2018, 9:16 PM
Hi AbdurRahman,
Ref pass the two way from caller to calle and back
Out is one way it sends data back from calle to caller and any data from caller is discarded.