C# out Keyword

Posted Dylan_Java_NYC

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# out Keyword相关的知识,希望对你有一定的参考价值。

In C#, out keyword 是argument传值变成passed by reference. out keyword 在同时返回多个值时很有用.

与ref keyword 相似. 若是使用out keyword传argument, 那么在method 的definition 和 使用时都需要家out keyword. 

Async methods can‘t use out keyword.

 

Differences between out keyword and ref keyword:

ref requires that variable be initialized before it is passed.

 1 class OutReturnExample
 2 {
 3     static void Method(out int i, out string s1, out string s2)
 4     {
 5         i = 44;
 6         s1 = "I‘ve been returned";
 7         s2 = null;
 8     }
 9     static void Main()
10     {
11         int value;
12         string str1, str2;
13         Method(out value, out str1, out str2);
14         // value is now 44
15         // str1 is now "I‘ve been returned"
16         // str2 is (still) null;
17     }
18 }

 

以上是关于C# out Keyword的主要内容,如果未能解决你的问题,请参考以下文章

out参数不用赋值?这么神奇吗!

C# 最有用的(自定义)代码片段是啥? [关闭]

c#代码片段快速构建代码

此 Canon SDK C++ 代码片段的等效 C# 代码是啥?

是否可以动态编译和执行 C# 代码片段?

C#常用代码片段备忘