Select Page
How to Adequately Prepare for a C# Interview

How to Adequately Prepare for a C# Interview

Preparing for a C# interview holds many similarities with preparing for other coding interviews. You can expect a similar interview structure, types of questions, and problems presented to you, though a C# interview will focus on C# concepts, as expected. One of the...
Ref Parameters vs. Out Parameters in C#

Ref Parameters vs. Out Parameters in C#

C# Params Though both ref and out parameters are used to pass arguments through a method, the C# params aren’t used in exactly the same way. Ref keywords are used to pass an argument as a reference, meaning that when the value of that parameter changes after...