Welcome to Catalyst Blogs Sign in | Join | Help

Browse by Tags

All Tags » .NET   (RSS)
On my current project, we're in a 'make it faster' mode right now.  We've already knocked out a bunch of low-hanging fruit, and the profiler is telling me that about 10-15% of my time is spent by CSLA looking up authorization rules in a Dictionary<string,X>.  Read More...
UseAccessibleHeader="true" of course. What did you think it'd be called, "UseTHTag" or something reasonable? We can't do that, you might be able to figure it out on your own that way. Read More...
Friday morning, one of my co-workers idly remarked about something that occasionally happens to all of us -- we write an email and in some way reference a file we're intending to attach, but forget to attach the file. Especially if you're sending a build Read More...
The project I'm currently working on is using unit tests will nearly full code coverage to ensure things continue to work as we refactor the code. Today, I was working on writing the unit tests for some code that adds some logging to exceptions throw Read More...
The current project I'm working on is using Visual Studio 2008 and it's unit testing framework (which is very similar to NUnit). I've figured out how to mock out most of the code that needs it, but there's a bit of code I want to test against an actual Read More...
Adding unnamed parameters to an OleDbCommand is a quadratic operation, not a constant-time operation. Read More...
The project I'm working on right now makes extensive use of databinding in many windows (implemented as user controls). Naturally, we're very careful to make sure each window gets disposed when the user navigates away from it. However, we were still experiencing Read More...
A project I'm working on right now uses a per-user installation model with MSIs. During some testing with the people in charge of managing installation, we noticed that "Add/Remove Programs" was showing multiple copies of our app -- one for each version Read More...