resultOne- This is not one line, but IEnumerable<string>, therefore, several are possible. You either have to choose a specific one (fe The First()), or use another method to get one, for example String.Join:
string allResults = String.Join(",", resultOne);
foreach:
foreach(string str in resultOne)
MessageBox.Show(string.Format ("Value is: {0}", str));
, , First FirstOrDefault ( Single/SingleOrDefault, ):
string firstOfAll = resultOne.FirstOrDefault(); // null if there was none