guys!
I’ve got the code like following:
String input_string = "Good bye world!";
from c in input_string.Split(new char[]{' '})
select int.Parse(c);
and I would like to order resulting query by int.Parse(c) like
String input_string = "Good bye world!";
from c in input_string.Split(new char[]{' '})
orderby int.Parse(c)
select int.Parse(c);
but without calculating int.Parse(c); again in orderby statement.
Any ideas?
You can use
let:Output: