If I have the following array of strings:
string[] stringArray = {\"one\", \"two\", \"three\", \"four\"};
Is there a way to get the first and l
You can use stringArray.GetUpperBound(0) to get the index of the last item.