C#中的逗号运算符可用作方法参数列表中的分隔符。您也可以在for语句中使用它作为运算符。
以下是显示在for语句中使用逗号运算符进行初始化的示例-
for (int i = begin, j = 1; i <= end; i++, j++)
在Console.WriteLine中也使用它来显示值-
Console.Write("{0} : {1} ", i, (char)i);
这是完整的代码-
using System; class Demo { const int begin = 45; const int end = 60; const int line = 1; static public void Main() { for (int i = begin, j = 1; i <= end; i++, j++) { Console.Write("{0} : {1} ", i, (char)i); if (0 == (j % line)) { Console.WriteLine(""); } } } }
输出结果
45 : - 46 : . 47 : / 48 : 0 49 : 1 50 : 2 51 : 3 52 : 4 53 : 5 54 : 6 55 : 7 56 : 8 57 : 9 58 : : 59 : ; 60 : <