Search Results

1
vote

What is the difference between lambdas and delegates in the .NET Framework?

Delegates are really just structural typing for functions. You could do the same thing with nominal typing and implementing an anonymous class that implements an interface or abstract class, but t …
1
vote

String vs StringBuilder

Using strings for concatenation can lead to a runtime complexity on the order of O(n^2). If you use a StringBuilder, there is a lot less copying of memory that has to be done. With the Str …
1
vote

Reading XML with an “&” into C# XMLDocument Object

You can replace & with & Or you might also be able to use CDATA sections. …
1
vote

Using explicit interfaces to ensure programming against an interface.

Well there is an organizational advantage. You can encapsulate your ICuttingSurface, ICut and related functionality into an Assembly that is self-contained and unit testable. Any implementations …
0
votes

Using generics directly in code

If your List of Strings is actually just a list of strings, then leave it as a list of Strings. If your List of Strings, if it has to have specially formatted strings, or you want to encapsulate, …