vote up 4 vote down star
2

This is a cursory question I can't quite answer.

The main program

class Program{
    static void Main(string[] args){
        Console.WriteLine("Begin");
    	var myClass = new MyClass();
    	Util.Print(myClass.Id);
    	Util.Print(myClass.Server);
    	Util.Print(myClass.Ping);
        Console.WriteLine("End");
    }	
}

How do I implement the Util.Print method to get this output to the console:

Begin
Id
Server
Ping
End
flag

80% accept rate

3 Answers

vote up 11 vote down check

Assuming you don't want to use strings, the most common answer is via an Expression - essentially emulating the missing infoof; you would have to use something like:

    Console.WriteLine("Begin");
    var myClass = new MyClass();
    Util.Print(() => myClass.Id);
    Util.Print(() => myClass.Server);
    Util.Print(() => myClass.Ping);
    Console.WriteLine("End");

Assuming they are all properties/fields (edit added method-call support):

 public static class Util
{
    public static void Print<T>(Expression<Func<T>> expr)
    {
        WriteExpression(expr);
    }
    public static void Print(Expression<Action> expr) // for "void" methods
    {
        WriteExpression(expr);
    }
    private static void WriteExpression(Expression expr)
    {
        LambdaExpression lambda = (LambdaExpression)expr;
        switch (lambda.Body.NodeType)
        {
            case ExpressionType.MemberAccess:
                Console.WriteLine(((MemberExpression)lambda.Body)
                    .Member.Name);
                break;
            case ExpressionType.Call:
                Console.WriteLine(((MethodCallExpression)lambda.Body)
                    .Method.Name);
                break;
            default:
                throw new NotSupportedException();
        }
    }
}
link|flag
+1 at first glance i didn't really think he could do something like this, but i totally forgot about expression trees and reading the data from the tree. Great... – bendewey Mar 30 at 20:05
+1 Expressions == code as data! Nicely done. – Andrew Hare Mar 30 at 20:06
What a kick ass response. Thanx a million – Rasmus Mar 30 at 20:14
That.... is very interesting. Anyone have a good link for a primer on these "Expression Trees"? – GWLlosa Mar 30 at 21:36
@GWLlosa - that was a question this week... I'm having difficulty finding it, though – Marc Gravell Mar 31 at 4:14
vote up 2 vote down

In addition to Marc's answer: here is an article which explains several ways to do what you want to do (one such method uses expressions).

link|flag
Also a good reply – Rasmus Mar 30 at 20:17
vote up 0 vote down

public string Id { get { return "Id;" } }

Hehe erm, though I assume that's not what you mean :-( The answer will likely be something to do with reflection.

Take a look at http://msdn.microsoft.com/en-us/library/ms173183(VS.80).aspx

link|flag
-1 this doesn't really answer the OPs question. I think he's really looking for something that can accept any random property – bendewey Mar 30 at 20:14
+1, this kind of answer highlights the ambiguity in the OP question and promotes editing for clarification through peer pressure. – GWLlosa Mar 30 at 21:29
I was gonna rate this down, but I agree with the comment above me. OP should really clarify. I was kinda confused. – Mike Christiansen Mar 30 at 22:24

Your Answer

Get an OpenID
or

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