Ref 参数引用参数是指向变量内存位置的引用。当您按引用传递参数时,与值参数不同,不会为这些参数创建新的存储位置。您可以使用 ref 关键字声明引用参数。以下是一个示例:示例 在线演示using System; namespace CalculatorApplication { class NumberManipulator { public void swap(ref int x, ref int y) { int temp; temp = x; /* 保存 x 的值 */ x = y; /* 将 y 的值赋给 x */ y = temp; /* 将 temp 的值赋给 y */ } } } ... 阅读更多
在 C# 中,某些标识符在代码上下文中具有特殊含义,例如 get 和 set 被称为上下文关键字。以下是上下文关键字的表格:上下文关键字add alias ascending descending dynamic from get global group into join let orderby partial (type) partial(method) remove select set