「C#」実行ファイルを作成する
使用例
using System;
class Demo
{
static void Main()
{
string cft = "22222";
Console.WriteLine(cft); // 22222
Console.ReadKey(); // ユーザーの入力を待つ
}
}
Coding Changes the World
使用例
using System;
class Demo
{
static void Main()
{
string cft = "22222";
Console.WriteLine(cft); // 22222
Console.ReadKey(); // ユーザーの入力を待つ
}
}