Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
模块必须是.psm1文件或.psd1清单文件(或 dll)。A.ps1没有资格作为模块,它“只是”一个脚本。
.psm1
.psd1
.ps1
Random r = new Random(); List<object> myList = new List<object>(); for (int i = 0; i < 100; i++) myList.Add(new { A = r.Next(), B = r.Next() }); m