2
votes
Are you using BizTalk? If so, how are you using it?
We have a few dozen applications that need to interact. We have a single web service based application which controls passing messages between systems. Other systems talk to it and receive messag …
7
votes
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
Takes a camelCaseWord or PascalCaseWord and "wordifies" it, ie camelCaseWord => camel Case Word
public static string Wordify( this string camelCaseWord )
{
// if …
1
vote
Where to get custom controls for Winforms .NET?
There are lots of places.
telerik is a popular commercial
option
…
0
votes
Are custom Winforms control auto generated designer files needed?
Strictly speaking I don't think so, but then you will lose any design time benefit you would get when creating the control, and my guess is that VS will keep trying to recreate them.
…
