17 lines
397 B
C#
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();
|
|
// }
|
|
// }
|
|
//}
|