C#打印数组的⽅法1. for 循环
using System;
using static System.Console;
namespace syqwq
{
class Program
{
static void Main(string[] args)
{
int[] array = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
for(int i=0; i<array.Length; i++)
{
WriteLine(array[i]);
}
ReadKey();
}
}
}
2. foreach 循环
using System;
using static System.Console;
namespace syqwq
{
class Program
{
static void Main(string[] args)
{
int[] array = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
foreach(int i in array)
{
WriteLine(i);
}
ReadKey();
}
}
}
3. LINQ (有点多此⼀举的⽅法......)
using System;
using System.Linq;
using static System.Console;
namespace syqwq
{
class Program
{
static void Main(string[] args)
{
int[] array = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
var a = from item in array
select item;
foreach(var i in a)
{
WriteLine(i);
}
ReadKey();
}
}
}
4. 数组转化为字符串
using System;
using static System.Console;
namespace syqwq
{
class Program
{
static void Main(string[] args)
{
string字符串转化数组
int[] array = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
WriteLine(string.Join(" ", array));
ReadKey();
}
}
}
5. Array.ForEach<T>(T[] array, Action<T> action);定义
//
// 摘要:
// 对指定数组的每个元素执⾏指定操作。
//
/
/ 参数:
// array:
// 从零开始的⼀维 System.Array,要对其元素执⾏操作。
//
// action:
// 要对 array 的每个元素执⾏的 System.Action`1。
//
// 类型参数:
// T:
// 数组元素的类型。
//
/
/ 异常:
// T:System.ArgumentNullException:
// array 为 null。 - 或 - action 为 null。
public static void ForEach<T>(T[] array, Action<T> action);
实现⽅法:
using System;
using static System.Console;
namespace syqwq
{
class Program
{
static void Main(string[] args)
{
int[] array = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
Array.ForEach<int>(array, (int i) => WriteLine(i));
ReadKey();
}
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论