Search Results

0
votes

What reason is there for C# or Java having lambdas?

Lambda's allow for more readable code in that they allow operations to be defined closer to the point of use rather than like the current C++ method of using function objects whose definition is so …
0
votes

How do I sort a two-dimensional array in C#?

If you could get the data as a generic tuple when you read it in or retrieved it, it would be a lot easier; then you would just have to write a Sort function that compares the desired column of the …