من وقتی می خوام کد زیر رو چاپ کنم مشکل پیدا می کنم و پیغام system.int32[] به تعداد اعضای ارایه میده:
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
int[] numbers = new int[12] { 2, 4, 6, 7, 1, 4, 6, 7, 2, 2, 2, 7 };
foreach (int item in numbers)
{
Console.WriteLine(numbers);
}
Console.ReadKey();
}
}
}