2
votes
1answer
78 views
What is the VB equivalent of this C# syntax, dealing with delegates?
Is it possible to translate the following C# code into VB.NET, using VB 9.0?
delegate Stream StreamOpenerDelegate(String name);
void Exec1()
{
WorkMethod( x => File.OpenRe …
2
votes
2answers
103 views
What is the name for this usage of delegate in C#?
This is a terminology question. In C#, I can do this:
delegate Stream StreamOpenerDelegate(String name);
void WorkMethod(StreamOpenerDelegate d)
{
// ...
}
void Exec1()
{
…
1
vote
3answers
162 views
Will Jon Skeet’s Book, C# In Depth Help Me Understand This Code Better? [closed]
I want to be able to understand this the C# code used in the MVC Contrib UI Grid implementation. Here is a link to the source. I am specifically interested to learn about the liber …
33
votes
13answers
921 views
Abuse of C# lambda expressions or Syntax brilliance?
I am looking at the MvcContrib Grid component and I'm fascinated, yet at the same time repulsed, by a syntactic trick used in the Grid syntax:
.Attributes(style => "width:100% …
2
votes
4answers
115 views
Is there a way to specify an “empty” C# lambda expression?
I'd like to declare an "empty" lambda expression that does, well, nothing.
Is there a way to do something like this without needing the DoNothing() method?
public MyViewModel( …
1
vote
3answers
45 views
Need help building LINQ to SQL Expression
I need to translate the following Code to an Expression and I will explain why:
results = results.Where(answer => answer.Question.Wording.Contains(term));
results is IQueryab …
3
votes
2answers
53 views
Lambda Expressions and Event Subscriptions
I've heard that if lambda expressions are used to subscribe to an event, then this creates a weak reference to the event handler code, so it is not required to explicitly unsubscri …
1
vote
5answers
46 views
Multiple Where clauses in Lambda expressions
I have a simple lambda expression that goes something like this:
x=> x.Lists.Include(l => l.Title).Where(l=>l.Title != String.Empty)
Now, if I want to add one more wher …
1
vote
2answers
33 views
How to order by multiple columns using VB.Net lambda expressions
I've done a brief search of this site, and googled this, but can't seem to find a good example. I'm still trying to get my head around the whole "Lambda Expressions" thing.
Can an …
0
votes
1answer
82 views
C# Lambda expression -Help
I am learning lambda expression and delegates.While i try to execute the following ,I am getting error at the line which is marked bold line. (Error : Operator '+=' cannot be appli …
6
votes
5answers
207 views
combining two lamba expressions in c#
Given a class structure like this:
public class GrandParent
{
public Parent Parent { get; set;}
}
public class Parent
{
public Child Child { get; set;}
}
public class Chi …
1
vote
7answers
354 views
How do you explain closure to a 5 year old?
I am currently looking at lambda expression and the word closure keeps coming. Can someone explain it to me in real simple language.
2
votes
1answer
137 views
when to use or not Lambda Expressions.
I see lambda expressions have become a very useful tool at some points in the language. I've been using them a lot and most of the time they fit really nice and make the code short …
1
vote
2answers
92 views
LINQ to append to a StringBuilder from a String[]
I've got a String array that I'm wanting to add to a string builder by way of LINQ.
What I'm basically trying to say is "For each item in this array, append a line to this StringB …
0
votes
0answers
67 views
How can I simply return a lambda-type expression from a property or method?
How can I simply return a lambda-type expression from a property or method call?
This is what I am trying to accomplish, something like this:
public static Expression<Func&l …
