what is the pros and cons of using out parameter

前端 未结 4 1102
囚心锁ツ
囚心锁ツ 2021-01-19 10:22

Anyone can point out the pros and cons of the out parameter. When it is preferred to use out parameter rather than just to return a value.

4条回答
  •  野的像风
    2021-01-19 11:00

    In C# you can't return multiple variables, so you might do the job by using the out parameter, if you don't want to go through a class (return a class with those multiple variables).

提交回复
热议问题