I have a class (that I cannot modify) that simplifies to this:
public class Foo { public static string MyProperty { get {return \"Metho
You need something like this:
typeof(Foo) .GetProperty("MyProperty") .GetGetMethod() .Invoke(null, new object[0]);