I\'m using reflection to get at the TryParse method info (upvote for the first person to guess why ;).
If I call:
typeof(Int32).GetMethod(\"Parse\",
Try this
typeof(Int32).GetMethod("TryParse", BindingFlags.Static | BindingFlags.Public, null, new Type[] { typeof(string), typeof(Int32).MakeByRefType() }, null);