C#通过Array.Clear部分清除数组的代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#通过Array.Clear部分清除数组的代码相关的知识,希望对你有一定的参考价值。
将代码过程中重要的一些代码片段记录起来,如下的代码是关于C#通过Array.Clear部分清除数组的代码,希望对大家有所用。using System;
class ArrayClear
{
public static void Main()
{
int[] integers = { 1, 2, 3, 4, 5 };
DumpArray ("Before: ", integers);
Array.Clear (integers, 1, 3);
DumpArray ("After: ", integers);
}
public static void DumpArray (string title, int[] a)
{
Console.Write (title);
for (int i = 0; i < a.Length; i++ )
{
Console.Write("[{0}]: {1, -5}", i, a[i]);
}
Console.WriteLine();
}
}
这段代码的输出结果如下:
Before: [0]: 1 [1]: 2 [2]: 3 [3]: 4 [4]: 5
After: [0]: 1 [1]: 0 [2]: 0 [3]: 0 [4]: 5
以上是关于C#通过Array.Clear部分清除数组的代码的主要内容,如果未能解决你的问题,请参考以下文章