Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created July 16, 2020 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save todorok1/b0d9b90db7bff8af54b6f3b1bdd4b11f to your computer and use it in GitHub Desktop.
Save todorok1/b0d9b90db7bff8af54b6f3b1bdd4b11f to your computer and use it in GitHub Desktop.
デバッグ文を出力するサンプル
int userNumber = 1234;
Debug.Log($"{userNumber}");
// これだと変数の中身だけ表示されて「わけがわからないよ」となる
// 1234
Debug.Log($"userNumber : {userNumber}");
// これなら変数名も出力される
// userNumber : 1234
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment