C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#で入力を文字列として読み取る方法は?


入力をC#で文字列として読み取るには、Console.ReadLine()メソッドを使用します。

str = Console.ReadLine();

上記は入力を文字列として読み取ります。入力にはデフォルトで文字列が使用されるため、ここでConvertメソッドを使用する必要はありません。

次に、ユーザーが入力した文字列を表示します-

using System;
using System.Collections.Generic;

class Demo {
   static void Main() {
      string myStr;

      // use ReadLine() to read the entered line
      myStr = Console.ReadLine();

      // display the line
      Console.WriteLine("Result = {0}", myStr);
   }
}

出力

Result =

以下は出力です。ユーザーが入力として「Amit」を入力したとします-

Result = amit

  1. C#でコンソールのCursorSizeを変更するにはどうすればよいですか?

    C#でコンソールのCursorSizeを変更するには、C#でConsole.CursorSizeプロパティを使用します。 例 例を見てみましょう- using System; class Demo {    public static void Main (string[] args) {       Console.BackgroundColor = ConsoleColor.Blue;       Console.WriteLine("Background color changed = "

  2. C#でコンソールのCursorLeftを変更するにはどうすればよいですか?

    C#でコンソールのCursorLeftを変更するには、Console.CursorLeftプロパティを使用します。 例 例を見てみましょう- using System; class Demo {    public static void Main (string[] args) {       Console.BackgroundColor = ConsoleColor.Blue;       Console.WriteLine("Background color changed = "+C