facebook twitter hatena line email

Unity/Csharp/コーディング規約

提供: 初心者エンジニアの簡易メモ
2021年8月12日 (木) 18:59時点におけるAdmin (トーク | 投稿記録)による版 (参考リンク)

移動: 案内検索

参考リンク

Csharp Coding Guidlines Unity Community 和訳 https://qiita.com/shun-shun123/items/212893b60b7f14c69351

microsoft公式 c# dotnet https://docs.microsoft.com/ja-jp/dotnet/csharp/fundamentals/coding-style/coding-conventions

functionを1行で

void Awake() {
   Debug.Log("test");
}

void Awake() => Debug.Log("test");