Say we have a class like
public class Doer { public int Timeout {get;set;} public string DoIt(string input) { string toReturn;
Is there a tool that would create Form or Control to prototype this class? The GUI can have a NumericUpDown element labeled โTimeoutโ and a GroupBox with a TextBox for โinputโ and a button labeled โDoItโ with an event handler that calls Doer.DoIt with the Text property of the input text block and puts the response in another TextBox.

source share