The other day, I was working on converting some C'# to PowerShell. 95% was trivial and almost *** memory. Then I came to this block of C# char[] chars = { 'w', 'o', 'r', 'd' };
string string1 = new string(chars);
Console.WriteLine(string1); The output… Read the full text.