Why use the 'ref' keyword when passing an object?

后端 未结 11 1697
被撕碎了的回忆
被撕碎了的回忆 2020-11-22 06:45

If I am passing an object to a method, why should I use the ref keyword? Isn\'t this the default behaviour anyway?

For example:

class Program
{
    s         


        
11条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-22 07:41

    This is like passing a pointer to a pointer in C. In .NET this will allow you to change what the original T refers to, personally though I think if you are doing that in .NET you have probably got a design issue!

提交回复
热议问题