I want to ask what should i do to open form with the help or class name in winform c#?
I have three different forms
You may be able to do something like this, using the name of your form, as a string argument:
var form = (Form)Activator.CreateInstance(Type.GetType("YourNameSpace.UserManagement")); form.Show();