4
votes
how would you architect a desktop application in C# 3.0
I would start with the Composite Application Guidance for WPF (cough PRISM cough) from Microsoft's P&P team. With …
0
votes
how would you architect a desktop application in C# 3.0
I would say yes, it could easily be structured towards smaller applications. There is a learning curve towards getting started, but honestly, it helped me understand WPF better than attempting to s …
13
votes
Is this the proper use of a mutex?
You said multiple instances of one application, so we're talking about two program.exe's running, right? The lock statement won't lock across multiple programs, just within the program. If you want …
2
votes
Which .Net collection for adding multiple objects at once and getting notified ?
If you're wanting to inherit from a collection of some sort, you're probably better off inheriting from System.Collections.ObjectModel.Collection because it provides virtual methods for override. Y …
1
vote
4
votes
What are the C# documentation tags?
Check out http://thoughtpad.net/alan-dean/cs-xml-documentation.html. Great documentation on the various C# XML …
1
vote
Blocking dialogs in .NET WebBrowser control
This is most definitely hacky, but if you do any work with the WebBrowser control, you'll find yourself doing a lot of hacky stuff.
This is the easiest way that I know of to do this. You ne …
4
votes
1
vote
How can I create my custom Shell Context Handlers for Windows?
As the prior comments mention, it isn't the best idea to write shell extensions in managed languages, but I thought I'd share an Open Source project that is doing just that :)
…
0
votes
Why is try {…} finally {…} good; try {…} catch{} bad?
The problem with try/catch blocks that catch all exceptions is that your program is now in an indeterminate state if an unknown exception occurs. This goes completely against the fail fast rule - y …
3
votes
Which language should I pick up: VB.Net or C#
If possible, both :)
If just one, then I'd go with C# myself. If you use the feature that Visual Studio 2008 added to be able to download the source for reference, you'll notice that it is …
8
votes
C# custom event handlers
You should check out the System.ComponentModel.BindingList, specifically the …
2
votes
Curious pop-up behavior when using WebBrowser class
Are you looking to actively block popups or handle them in your application? If you're wanting to customize the blocking, then you'll have to implement the …
3
votes
DateTime “null” value
I'd consider using a nullable types.
DateTime? myDate instead of DateTime myDate;
…
