5

is there a way to get user input like an inputbox in c#? i would like a window to pop up to ask a user to enter a string

2

1 Answer 1

11

C# itself doesn't have such a feature, assuming you're using Winforms, but you can steal one from VB.NET's default libraries (from the Microsoft.VisualBasic namespace):

using Microsoft.VisualBasic;

class Program
{
    static void Main()
    {
       var response = Interaction.InputBox("Enter some text!", "Title", "Default text");
    }
}

See MSDN for more info.

You could also create your own window using WinForms (or WPF) if you need it to do something more specific.

Sign up to request clarification or add additional context in comments.

1 Comment

Don't forget to add assembly reference Microsoft.VisualBasic

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.