If I have the following array of strings:
string[] stringArray = {\"one\", \"two\", \"three\", \"four\"};
Is there a way to get the first and l
There are stringArray.First() and stringArray.Last() as extension methods in the System.Linq namespace.
stringArray.First()
stringArray.Last()