What is the correct syntax for this:
IList names = \"Tom,Scott,Bob\".Split(\',\').ToList().Reverse();
What am I
Try this:
List names = new List("Tom,Scott,Bob".Split(',')); names.Reverse();