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
-
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 = "
-
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