-1
votes
Prevent .NET from “lifting” local variables
How about:
string prefix = "OLD:";
string prefixCopy = prefix;
Func<string, string> prependAction = (x => prefixCopy + x);
prefix = "NEW:";
Console.WriteLine(prependAction( …
-1
votes
Prevent .NET from “lifting” local variables
Well, if we're gonna talk about "problems" here, lambdas come from the functional programming world, and in a purely functional programming langauge, there are no assignments and so your p …
2
votes
How to pass a generic property as a parameter to a function?
Properties are simply syntactic sugar for methods.
I don't think you can modify a property such that it becomes some entity "whose getter you can call".
You can however create a met …
0
votes
How to pass a generic property as a parameter to a function?
Re: aku's answer:
Then you have to obtain that property info first. It seems "use reflection" is the standard answer to the harder C# questions, but reflection yields not-so-pretty hard-to- …
0
votes
Set operation in .NET C#
I have been abusing the Dictionary class in .NET 2.0 as a set:
private object dummy = "ok";
public void Add(object el) {
dict[el] = dummy;
}
public bool Contains(object el) {
…
0
votes
Left to right expression evaluation
In Java and Haskell && and || short-circuit as well.
Interesting aside: in Haskell this comes naturally with the language (you can define your own operators that do this), while in …
5
votes
if question
Try replacing the second line with
string ou = null;
The problem is that if nom turns out not to equal "1", the variable ou won't have been initialized. The compil …
1
vote
How to identify when an object is empty?
Why not just check the result of your database call to see if any record at all was returned? If there are 0 results, you'll know there's no such user, and you won't have to create a User object at …
0
votes
How can I tell if a network cable has been unplugged?
If I really wanted to use your application and whether it will work depends on something like this, I would always be able to find a way to trick your application. Are you sure there's no better so …
0
votes
Scroll 2 panels at the same time
Why don't you place the split container completely in a scrolling thingy instead of putting the scrollbar thingies inside the split container? That way they naturally share the same scrollbar and t …
4
votes
Contrasting C# generics with Haskell parameterized types
Another big difference is that C# generics don't allow abstraction over type constructors (i.e. kinds other than *) while Haskell does. Try translating the following datatype into a C# class:
…
