Tagged Questions
6
votes
14answers
396 views
What features would you like added/changed in the .NET Framework?
Over the years I have found myself being limited by what's available in the .NET framework, and having to work-around the stuff that isn't there.
This seems ludicrous to me because there are so many ...
3
votes
2answers
211 views
Tool to generate a GUI (WinForms or WPF) from a class
Say we've got a class like
public class Doer
{
public int Timeout {get;set;}
public string DoIt(string input)
{
string toReturn;
// Do something that involves a Timeout
...