vote up 0 vote down star

May I know how to call the static method in Lambda Expression?

flag

49% accept rate
Can you clarify this question by posting a code snippet of what you are trying to do? – Jon Limjap Sep 19 '08 at 3:03

closed as not a real question by Ngu Soon Hui Sep 19 '08 at 3:25

2 Answers

vote up 5 vote down

I don't really understand the question, it's the same as calling a static method in any case. Class.Method(); Shouldn't really make a difference if the call is from an inline method or not.

Here are some examples.. not sure if this is what you were asking.

Action a = () => MyClass.MyMethod();

or

MyEnumerable.Single(myObj => myObj.Value == MyClass.MyStaticValueMethod());
link|flag
vote up 0 vote down

My I know what do you mean? Maybe some example of what you want to achieve?

link|flag

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