Search Results

1
vote
2answers
191 views

How do I use .Net Generics to inherit a template parameter?

I want to be able to do this. MyInterface interface = new ServiceProxyHelper<ProxyType>(); Here's the object structure …
3
votes
4answers
912 views

What the best rollover log file tracelistener for .NET

I'm looking for a good TraceListener for .Net that supports rolling over the log file based on size limits. Constraints Uses .Net built in Trace logging …
2
votes
6answers
2k views

Build deployment using CruiseControl.net

I've seen a few examples on how to do build deployment, however I have something unique that I'd like to do: Deploy the build to a folder that has the build number (eg. Project\Builds …
4
votes
7answers
558 views

Is there a good graph (not charting) visualization API for .Net?

I've looked at Microsoft GLEE (non-commerical use) and other libraries for drawing graphs, b …
10
votes

Hidden .NET Base Class Library Classes?

String.Format(). Allows you to get rid of the wonkiness of "This" + " is" + " my favorite " + " Application"; …