1 代码
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication1 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 string[] change = { "积善之家","必有余庆"}; 14 List<string> contents = change.ToList(); 15 foreach (var item in contents) 16 { 17 Console.WriteLine(item); 18 } 19 Console.ReadKey(); 20 } 21 } 22 }
2 效果
时间: 2024-11-05 12:14:01