「Unity/Csharp/コーディング規約」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==参考リンク== Csharp Coding Guidlines Unity Community 和訳 https://qiita.com/shun-shun123/items/212893b60b7f14c69351 ==functionを1行で== 前 void Awake() {...」) |
(→参考リンク) |
||
行2: | 行2: | ||
Csharp Coding Guidlines Unity Community 和訳 | Csharp Coding Guidlines Unity Community 和訳 | ||
https://qiita.com/shun-shun123/items/212893b60b7f14c69351 | 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行で== | ==functionを1行で== |
2021年8月12日 (木) 18:59時点における版
参考リンク
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");