Search Results

2
votes
3answers
346 views

Is there a more efficient text spooler than TextWriter/StringBuilder

For a situation like capturing text incrementally, for example if you were receiving all of the output.write calls when a page was rendering, and those were being appended into a textwriter over a …
3
votes

Avoiding first chance exception messages when the exception is safely handled

Unlike Java, Dotnet exceptions are fairly expensive in terms of processing power and handled exceptions should be avoided in the normal and successful execution path. Not only will you avoid clutte …
1
vote

Test if a floating point number is an integer

This will let you choose what precision you're looking for, plus or minus half a tick, to account for floating point drift. The comparison is integral also which is nice. static voi …
1
vote

How would you refactor this LINQ code?

Don't use LINQ if it's impacting readability. Factor out the individual tests into boolean methods which can be used as your where expression. IQueryable<MyObject> results = . …
6
votes

.NET WTF?s

I always thought the XmlWriter was a pretty insane design for an abstract base class. The following are just the abstract methods you have to provide - there are plenty of other virtual an …
1
vote

C# event handling (compared to Java)

The delegate declares a function signature, and when it's used as an event on a class it also acts as a collection of enlisted call targets. The += and -= syntax on an event is used to adding a tar …