C#コピペしたがなぜか正常に動かない
C#を学び始めて1日目です。
ヴィジュアルスタジオ2022を使用しています
https://csharp.sevendays-study.com/day1.html
↑こちらを参考に作っています
新しいプロジェクトの作成から
C# すべてのプラットフォーム デスクトップ
Windowsフォームアプリ
でプロジェクトを作成。
記事通りに『Sample101』で作成
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sample101
{
class Program
{
/*
* HelloWorld
*/
static void Main(string[] args)
{
// コンソールにHelloWorldと表示して終了
Console.WriteLine("HelloWorld.");
}
}
}
とコピペ。
それでもできず、
namespace Sample101
{
class Program
{
/*
* HelloWorld
*/
static void Main(string[] args)
{
// コンソールにHelloWorldと表示して終了
Console.WriteLine("HelloWorld.");
}
}
}
で再生。
けれどもエラー
このような形です。
どうしたら、HelloWorldと表示できるのでしょうか