编程学习网为您整理以下代码实例,主要实现:C#数组零索引,希望可以帮到各位朋友。
using System;
namespace ArrayApplication {
class MyArray {
static voID Main(string[] args) {
int [] n = new int[5];
int i,j;
/* begings from index 0 */
for ( i = 0; i < 5; i++ ) {
n[ i ] = i + 5;
}
for (j = 0; j < 5; j++ ) {
Console.Writeline("Element[{0}] = {1}", j, n[j]);
}
Console.ReadKey();
}
}
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!