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

C#を使用してコンソールに行を印刷するにはどうすればよいですか?


行を表示するには、C#でConsole.Write()を使用します。

コンソールは結果をコンソールに表示します。最初に文字列を設定しました。

string str = "Tom Hanks is an actor";

上記の行を表示しています。

Console.WriteLine(str);

以下は完全なコードです-

using System;
namespace Program {
   public class Demo {
      public static void Main(String[] args) {
         string str = "Tom Hanks is an actor";
         Console.WriteLine("Displaying a line below");
         Console.WriteLine(str);
         Console.ReadLine();
      }
   }
}

出力

Displaying a line below
Tom Hanks is an actor

  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