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

What is IL Weaving?

IL Weaving is simlar to ByteCode Weaving. .Net compiles to an intermediate language which is run by the .NET clr. IL Weaving is basically analyzing the and altering the the intermediate language. …