C# (Sharp) Programming Language Question:

What is the difference between proc. sent BY VAL and BY SUB?

C# (Sharp) Programming Language Interview Question
C# (Sharp) Programming Language Interview Question

Answer:

BY VAL: changes will not be reflected back to the variable.
By REF: changes will be reflected back to that variable.( same as & symbol in c, c++)


Previous QuestionNext Question
Which control cannot be placed in MDI?Int map to which .net types?