If I have the following array of strings:
string[] stringArray = {\"one\", \"two\", \"three\", \"four\"};
Is there a way to get the first and l
string[] stringArray = { "one", "two", "three", "four" }; var last=stringArray.Last(); var first=stringArray.First();