vote up 3 vote down star

Can I dynamically create a function and invoke it (passing values into it) in one line of code?

Clarification: I was looking for some way that could allow me to create an anonymous function and then calling it directly. Sort of:

delegate(string aa){ MessageBox.show(aa); }("Hello World!");

or something like that (I know the above code does not compile, but I wanted something close).

flag

Please explain why you want to do this. – Jonas Elfström Jan 29 at 8:11
I do not want to clutter my class header by introducing another declaration. – Hao Wooi Lim Jan 29 at 8:13
Why not just use plain old inline code? Also I can't really see how a private method could be a big problem. – Jonas Elfström Jan 29 at 8:16

4 Answers

vote up 16 vote down check

Of course

new Action<int>(x => Console.WriteLine(x)).Invoke(3);

it's not so readable but answering your question, you definitely can.

EDIT: just noticed you tagged it as c# 2.0, the answer above is for 3.5, for 2.0 it would be

new Action<int>(delegate(int x) { Console.WriteLine(x); }).Invoke(3);
link|flag
Thanks.. there seems to be a minor error though... Shouldn't it be new Action<string>(delegate(string x) { Console.WriteLine(x) }).Invoke("Hello World"); // I used delegate instead. – Hao Wooi Lim Jan 29 at 8:21
in 3.5 works (I checked it), in 2.0 you need to to write as you suggested – pablito Jan 29 at 8:27
ok just saw it's tagged c#2.0 I fixed my answer – pablito Jan 29 at 8:31
vote up 1 vote down

Check out anonymous methods.

link|flag
it does not requires another line, see my answer – pablito Jan 29 at 8:10
vote up 0 vote down

To create an anonymous method use delegate:

delegate(...your arguments...) { ...your code... };

Edit: After the question was revised pablitos answer is more accurate.

link|flag
To downvote an answer that is incorrect AFTER the question was revised/changed seems to me is not how voting should work. – Sani Huttunen Jan 29 at 9:30
@CKret: welcome to the internet, where people downvote you without a reason, all the time! ;) I've upvoted your answer though. – DrJokepu Jan 29 at 10:17
Thank you and thank you. ;) – Sani Huttunen Jan 29 at 11:34
Nitpicking, actually the question did not change.. I goes back to clarify because I feel that I need to. But anyway, thanks. – Hao Wooi Lim Jan 29 at 17:19
vote up 6 vote down

The .Invoke is actually not needed; you can just write:

new Action<int>(x => Console.WriteLine(x))(3);

or for C# 2.0:

new Action<int>(delegate(int x) { Console.WriteLine(x); })(3);
link|flag
nice one, didn't know that. – pablito Jan 29 at 9:01

Your Answer

Get an OpenID
or

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