Search Results

9
votes

What’s a good threadsafe singleton generic template pattern in C#

Courtesy of Judith Bishop, http://patterns.cs.up.ac.za/ This singleton pattern implementation ensures lazy initialisation. …
5
votes

Is there a standard framework for .NET parameter validation that uses attributes?

The Microsoft Enterprise Library has the Microsoft.Practices.EnterpriseLibrary.Validation library/namespace which allows validation using attributes. …
0
votes

How do I “smoothly” format HttpHandler URI?

You could implement URL rewriting, using something like URLRewriter.net That would let you use the syntax you've mentioned. …
1
vote

Parameterized singleton patterns

Based on your question, it seems you may be looking at an Abstract Factory pattern (creates an instance of several families of classes) that keeps an internal list/dictionary of classes that have a …
9
votes

How do I sort a generic list?

You can use List.Sort() as follows: ApprovalEvents.Sort((lhs, rhs) => (lhs.EventDate.CompareTo(rhs.EventDate))); …
1
vote

Summing up all nodes

Try this: private long sum(Node<T> thisNode) { if (thisNode == null) return 0; return thisNode.Size + sum(thisNode.Left) + sum(thisNode.Rig …
1
vote

A Possible Threading/COM/UI problem

I can't really reproduce the issue (creating a test project for an IE toolbar is a tad too much work), but you can try this: Add the following routine to a public static (extensions methods …
0
votes

Any frameworks on Authentication & Authorization for Windows Form Application?

If you're not too keen on reinventing the wheel, have a look at a product called Visual Guard. It allows you to easily add security to your …