How to redirect user from one form to another in console application.like in web application it is done by Response.Redirect("Webform.aspx").How this is done in Console application.
> How to redirect user from one form to another in console > application.like in web application it is done by > Response.Redirect("Webform.aspx").How this is done in Console > application.
Console applications have full access to the Win32 API. Maybe you're looking for SetForegroundWindow? There really is no concept of "redirect" in Windows.