Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How can I pass an anonymous type to a method?

Im trying to recognize the type of the anonymous type.

List<int> lst = new List<int> {1, 2, 3, 4, 5};

var myVarType = from item in lst select new {P = item*item, P2 = item + "###"};

foreach (var k in myVarType)
        {
            Console.WriteLine(k.P + "     " + k.P2);
        }

enter image description here

Now i want a part of code to be transferred to a function but it screams that he doesnt know the type - which is logical since var is to be known at compile time and he doesnt know the type at compile :

enter image description here

I dont want to use dynamic || Tuples.

and as you know var is not acceptable as a func param type.

But , Ive once read that there is a trick which lets me transfer to myFunc the anonymous type .

I think it was by Jon skeet or Eric lippert.

Help ?

edit

look at my self answer. I found it here What's the return type of an anonymous class

share|improve this question
3  
The 'trick' is here I think: blogs.msdn.com/b/ericlippert/archive/2012/01/23/… – Henk Holterman Feb 1 '12 at 11:03
stackoverflow.com/questions/775387/… <- it pretty much states it's not possible – Yngve B. Nilsen Feb 1 '12 at 11:07
@henk I already read this its not the one. there is other code . I will try to find it and let you know – Royi Namir Feb 1 '12 at 11:10
@HenkHolterman yeah thats the code. i found it here stackoverflow.com/questions/6466054/… – Royi Namir Feb 1 '12 at 11:21
@RoyiNamir But it won't let you access any property in a method. So your question is only going to work when casting the dynamic type before. Thats a big garbage. – Felix K. Feb 1 '12 at 11:25
show 1 more comment

marked as duplicate by nawfal, Steve, bmargulies, t0mm13b, Jon Hanna Jan 19 at 23:54

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

The type is 'generated' and you might be able to get it at run-time with reflection but it will contain characters you can't use in a name.

You could use Tuples:

 select new Tuple<int,string> ( item*item,  item + "###");
share|improve this answer
i know sorry I dont want tuples either. – Royi Namir Feb 1 '12 at 11:02
Why not? ______ – Henk Holterman Feb 1 '12 at 11:04
cause im trying to learn here the trick – Royi Namir Feb 1 '12 at 11:05
4  
The trick is not a trick - it's a hack, and it's not the way it should be done.. You would be better off trying to rewrite the code in a way so that it follows standards and utilizes the tools the framework provides. – Yngve B. Nilsen Feb 1 '12 at 11:09
Yngve i dont want to use tuples since of item1 item2 .... – Royi Namir Feb 1 '12 at 11:11

Make the method generic, this should work.

static void MyFunc<T>(IEnumerable<T> myVarType) ...

Edit

As mentioned in comments you can't access the properties. You could use here a delegate to access the properties or use dynamic ( which you don't want to use ).

static void MyFunc<T>(IEnumerable<T> myVarType, Func<T, Object[]> argumentCreator)
{
    Console.WriteLine("{0} {1}", argumentCreator(myVarType));
}
share|improve this answer
3  
but accessing P and P2 won't – user1096188 Feb 1 '12 at 11:06
no its not working either i.stack.imgur.com/PIefW.jpg – Royi Namir Feb 1 '12 at 11:06
wont work, as the T is not properly resolved when you enter the method. It'll initially just be an object.. Only solution here is to use dynamic, but he doesn't want to do that. – Yngve B. Nilsen Feb 1 '12 at 11:06
1  
@user1096188 Then you need dynamic. – Felix K. Feb 1 '12 at 11:06
up vote 1 down vote accepted

here is the code which i found

What's the return type of an anonymous class

static T CastByExample<T>(object source, T example) where T : class
{
    return source as T;
}

static object ReturnsAnonymous() { return new { X = 123 }; }

static void DoIt()
{
    object obj = ReturnsAnonymous();
    var example = new { X = 0 };
    var anon = CastByExample(obj, example);
    Console.WriteLine(anon.X); // 123
}
share|improve this answer

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