Archived
1
0
This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SomeLab/ConsoleApp4/Program.cs
2025-10-24 17:19:46 +08:00

17 lines
397 B
C#

//namespace ConsoleApp4
//{
// internal class Program
// {
// static void Main(string[] args)
// {
// int[] myarry = new int[3] { 10, 20, 30 };
// Console.WriteLine(myarry);
// foreach (int item in myarry)
// {
// Console.Write(item + " ");
// }
// Console.ReadLine();
// }
// }
//}