I gonna get MethodInfo
of String.TrimStart()
The following code returns null.
typeof(string).GetMethod("TrimStart", new Type[ ] {});
and the following code returns {System.String TrimStart(Char[])}
typeof(string).GetMethod("TrimStart", BindingFlags.Public | BindingFlags.Instance);
I wanna get {System.String TrimStart()}
exactly ?