0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

C#基礎まとめ①

Posted at

経緯

次案件がC#(Blazor)になりましたので、勉強がてら記事としてまとめていこうと思います。

参考資料

Udemy「一週間で身につくC#言語 / 亀田 健司」
https://www.udemy.com/course/c-nmavhi/

基本動作環境

・OS:Windows10
・IDE: Visual Studio 2017
(上記参考資料のUdemyコースのものに合わせた形になります)

基本コマンド

・標準出力(コンソール出力)

Console.Write("Hello World.");    //改行なし
Console.WriteLine("Hello World.");   //改行あり

・コメント

/* */ ブロックコメント
// 行コメント

確認方法

以下より
image.png

まとめ

・名前空間(namespace):プログラムを分類する「入れ物」の名前を決める

namespace Sample101

・usingステートメント:利用する名前を指定

using System;

・クラス名:プログラムのまとまった処理の単位

class (クラス名)

・エントリーポイント:C#は原則的にこの中の処理が実行される

static void Main(string[] args){}
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?