Tagged Questions

5
votes
9answers
162 views

Hidden Features of Windows.Forms

Despite the growing popularity Web Applications, and WPF, there's still a lot of work being done in "old-style" Windows.Forms, especially for in-house ("bespoke") business software systems. So, what …
4
votes
5answers
169 views

C# libraries with hidden gems

Up until yesterday, I had no idea iTextSharp included a full set of barcode classes. I discovered this through a chance answer to a question here on SO. Although I'd used iTextSharp in an earlier …
1
vote
1answer
98 views

Most useful and least known .Net Framework API/Attribute/etc [closed]

Possible Duplicate: Hidden Features of C#? Actual Duplicate: Hidden .NET Base Class Library Classes It seems occasionally I find people still not aware of and/or not using: …
1
vote
2answers
174 views

Hidden Features of Nant

Continuing the Hidden Features series for Nant. One of the things I learned recently was <xmlpoke> Allows you to replace text in an xml file. e.g. …
5
votes
7answers
295 views

Apart from initial cost, are there any other benefits of using MySQL over MSQL server with .net?

I've used both and I've found MySql to have several frustrating bugs, limited support for: IDE integration, profiling, integration services, reporting, and even lack of a decent manager. Total cost of …
44
votes
11answers
2k views

Visual Studio debugger tips & tricks for .NET

I've been working for years with VS's debugger, but every now and then I come across a feature I have never noticed before, and think "Damn! How could I have missed that? It's so useful!" …
120
votes
81answers
8k views

Hidden .NET Base Class Library Classes?

What are your favorite lesser-known .NET Base Class Library classes and methods?
111
votes
41answers
7k views

Hidden Features of ASP.NET

There are always features that would be useful in fringe scenarios, but for that very reason most people don't know them. I am asking for features that are not typically taught by the text books. …
892
votes
252answers
76k views

Hidden Features of C#?

This came to my mind after I learned the following from this question: where T : struct We, C# developers, all know the basics of C#. I mean declarations, conditionals, loops, operators, etc. Some …