2
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 3 years have passed since last update.

UnityでListの中身をDebug.Logに表示する

Last updated at Posted at 2021-08-13

using System.Linq;
と書いた上で

Debug.Log(string.Join(", ",list.Select(obj => obj.ToString())));

listの中に好きなリストを突っ込む
いいゾ~コレ

参考
https://qiita.com/shiratori1221/items/2e35dd53fcbcab42d6d9
のコメント欄
ありがとうございます

2
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
2
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?