vote up 0 vote down star

Let's say i got this:

public class Foo{
    public string Bar;
}

Then i want to create a 'static reflection' to retrieve value of Bar like this:

public void Buzz<T>(T instance, Func<T, string> getProperty){
    var property = getProperty(instance);        
}

That should work. But what if Foo looks like this?

public class Foo{
    public static string Bar = "Fizz";
}

Can i retrieve value of Bar without passing instance of Foo?

Usage should look like:

var barValue = Buzz<Foo>(foo=>foo.Bar);
flag

2 Answers

vote up 2 vote down check

You'd pass in a lambda which ignored its parameter, and use default(T) for the "instance" to use:

var barValue = Buzz<Foo>(x => Foo.Bar);

I suspect I'm missing your point somewhat though...

link|flag
This is where idea came from - delphicsage.com/home/blog.aspx/… – Arnis L. Aug 21 at 10:10
Sorry for being so vague - problem is that i'm feeling quite uncomfortable at this topic (trying to change that). But you hammered the nail... again... – Arnis L. Aug 21 at 10:19
vote up 0 vote down
class Program
    {
        static void Main()
        {
            Buzz<Foo>(x => Foo.Bar);
        }

        public static void Buzz<T>(Func<T, string> getPropertyValue)
        {
            var value = getPropertyValue(default(T));
            //value=="fizz" which is what i needed
        }
    }

    public class Foo
    {
        public static string Bar = "fizz";
    }

Thanks Jon.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.