Given an array of strings, how do I create another array that has another entry inserted at initialisation time?
Eg. I want to do something like this:
var newArrayOfStrings = new string[] { "inserted entry", anotherArrayOfStrings }
(I know I can do this by getting a count and then copying; but I think it should be possible to do this at initialisation time.)