ตัวดำเนินการจุลภาคใน 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 : <