The following forum(s) have migrated to Microsoft Q&A: Visual C# ! Visit Microsoft Q&A to post new questions.
Tuple<string, string> t = new Tuple<string, string>("a", "b"); object o = t;
//then how to convert object o back to Tuple ? i can find any method about this kind of convertion.
Like you do any other "conversion", with a cast:
t = (Tuple<string, string>)o;