Hello the 'flow!
I wish to call something similar to
public static void Foo()
{
PropertyInfo prop = xxx;
}
from
public string Bar()
{
get { return Foo(); }
}
I want prop to be the PropertyInfo for the calling property, I am at a loss as to what xxx would be.
Any ideas folks?
Kindness,
Dan