C# 技巧:Ref Locals 和 Returns
原文英文,约200词,阅读约需1分钟。发表于: 。Let’s talk about Ref Locals and Returns, introduced in C# 7, which allow methods to return references to variables, enabling direct manipulation of the original value. See the example in the code...
C# 7引入了Ref Locals和Returns,允许方法返回对变量的引用,从而直接操作原始值。通过示例代码,展示了如何返回和修改对数组元素的引用。这样可以直接操作原始变量,而无需创建副本。希望这个技巧能帮助你理解如何使用Ref Locals和Returns来直接高效地操作数据!