「C#」実行ファイルを作成する

2021年1月26日

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
using System;
class Demo
{
static void Main()
{
string cft = "22222";
Console.WriteLine(cft); // 22222
Console.ReadKey(); // ユーザーの入力を待つ
}
}
using System; class Demo { static void Main() { string cft = "22222"; Console.WriteLine(cft); // 22222 Console.ReadKey(); // ユーザーの入力を待つ } }
using System;
class Demo
{
      static void Main()
      {
            string cft = "22222";

            Console.WriteLine(cft); // 22222

            Console.ReadKey(); // ユーザーの入力を待つ
      }
}

 

C#

Posted by arkgame