up vote 0 down vote favorite
share [g+] share [fb]

Danny initially asked this question in response to a recent Scott Hanselman post:

Who can tell me what's this : Func<Customer, bool=""> A optional parameter with default value? A empty string for a bool? I replace it with Func, and get the different result in my machine! Everything works well, I get "where" statement without using Expression!

I know I've seen this Func madness, too, but I can't seem to get a Func<> or an Expression<Func<>> of this type to compile in C# 4.0.

Out of curiosity, what does the equals sign in the Func mean, if anything, and has that functionality been deprecated in C# 4.0?

[This question comes from Scott Hanselman’s blog: “The Weekly Source Code 52 - You keep using that LINQ, I dunna think it means what you think it means.”]

link|improve this question

feedback

closed as too localized by Nick Berardi, John Saunders, Eilon, Henk Holterman, weirdlover Jun 21 '10 at 21:44

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ.

5 Answers

up vote 7 down vote accepted

You say you've seen it... I doubt that you've seen it in code which compiles.

If you have, please give an example: because until I see real code that way, I'm 99% sure it's just not valid C#.

link|improve this answer
1  
Cool. That's all I needed to know. If Jon Skeet doesn't believe in it, then I don't believe in it. :) – weirdlover Jun 18 '10 at 20:19
@ewwwyn: The annoying thing is that just 12 hours ago I could have asked a C# language designer in person! – Jon Skeet Jun 18 '10 at 21:11
Mads Torgersen doesn't actually write code; the code assembles itself out of fear. – weirdlover Jun 18 '10 at 21:24
It as a bad format mistake in hanselmans highlighting software. It has since been fixed, and was fixed before this post was made. hanselman.com/blog/… – Nick Berardi Jun 19 '10 at 18:48
feedback

According to the Visual C# 4.0 Language Specification, the ISO C# Language Specification (which is a subset of Visual C# 2.0), the Visual Studio 2010 Syntax Highlighter and the Visual C# 4.0 Compiler, this is not legal C# code. It isn't even syntactically legal, i.e. it doesn't even parse, let alone semantically legal.

Therefore, it simply doesn't mean anything.

link|improve this answer
feedback

I think you need to read Scott's answer in the comments, his blog software was playing up.

Nothing to see here!!

link|improve this answer
feedback
  • ^ What Matt says. Few things to watch for using SyntaxHighlighter in blog:

(1) http://bitbucket.org/alexg/syntaxhighlighter/issue/154/c-brush-lacks-c-3-and-4-keywords

Bug #154 C# brush lacks C#3 and 4 keywords - group, orderby, from, var, select, ascending, descending, into, join, let, dynamic, add, remove, where (resulting in some LINQ syntax issues)

(2) hxxp://bitbucket.org/alexg/syntaxhighlighter/issue/165/using-in-code-produces

Bug #165 Using < and > in code produces < and ="">

Note: Be careful to use: <script type="syntaxhighlighter" class="brush: csharp">

(3) Yes Alex (SyntaxHighlighter) knows about it:

hxxp://alexgorbatchev.com/forums/comments.php?DiscussionID=200&page=1#Item_0

Forum thread: LINQ not working in C#

link|improve this answer
feedback

I doubt it's valid.
Even if Func supported optimal arguments, the last type argument is the result.

link|improve this answer
feedback

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