LoginSignup
1
1

More than 5 years have passed since last update.

C#の基本文法を覚えるというのがメインでした。

元々ゲーム専攻でC++をメインに使っていたので書き方が少し違う程度で考え方は変わらないように思えました授業についていけないと思うことはありませんでした。

c#
using // 名前空間の指定

namespace MyConsoleApp// 名前空間
{
    class program// クラス名
    {
        static void Main(string[] args)//Mainというメソッドの定義
        {

        }
    }

}

↑ これが基本形になります。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1