Answers for "input box in c#"

C#
5

how to take input in c#

using System;

namespace beginner
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("what is your Name:- ");
            string userName = Console.ReadLine();
            Console.WriteLine("Hello: " + userName);

        }
    }
}
Posted by: Guest on July-01-2021
10

c# input

Console.Write("words");
input = Console.ReadLine();
Posted by: Guest on April-10-2020
1

how to make an input in c#

string myName;

Console.WriteLine("Please, enter your full name here: ");
myName = Console.ReadLine();
Console.WriteLine("Hello, Mr. " + myName + "!");

Console.Key();

/* OR */

Console.WriteLine("Please, enter your full name: ");
string myName = Console.ReadLine();
Console.WriteLine("Hello, Mr. " + myName + "!");

Console.ReadKey();
Posted by: Guest on November-18-2020
0

inputbox c#

public static string InputBox (string Prompt, string Title = "", string DefaultResponse = "", int XPos = -1, int YPos = -1);
Posted by: Guest on August-15-2020

C# Answers by Framework

Browse Popular Code Answers by Language