Search Results

2
votes
3answers
345 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 …
0
votes

Will .NET MVC give me the HTML/CSS/JS separation I need?

Asp.Net MVC will help you keep html/css/js separate in that it will present fewer features that would prevent you from keeping them separate. For example Html helpers typically return just …
0
votes

What is the maximum possible length of a .NET string?

200 megs... at which point your app grinds to a virtual halt, has about a gig working set memory, and the o/s starts to act like you'll need to reboot. static void Main(string[] arg …
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 …