Search Results

0
votes

What’s so wrong about using GC.Collect()?

Bottom line, you can profile the application and see how these additional collections affect things. I'd suggest staying away from it though unless you are going to profile. The GC is designed to t …
0
votes

Possible to extend the String class in .net

You can also use an adapter pattern to add additional functionality. You can do operator overloading to make it feel like the built in string. Of course this won't be automatic for existing uses of …