What could be a LINQ equivalent to the following code?
string[] values = { \"1\", \"hello\", \"true\" }; Type[] types = { typeof(int), typeof(string), typeof(b
object[] objects = values.Select((s,i) => Convert.ChangeType(s, types[i])) .ToArray();