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?

配列やListの要素を1行でコンソールに表示

Last updated at Posted at 2024-05-05

0.0 はじめに

Unityのゲーム作成用に使用するC#スクリプトでの小ネタです。

1.0 string.Join関数

string.Join()を使用すると配列やList内の要素を1つの文字列にまとめることができます。
区切り文字となる第一引数は変更可能です。

2.0 コンソールに表示

まとめた文字列をDebug.Log関数でコンソール表示すれば完了です。

もちろんstring.Join()はコンソールに表示すること以外にも使えます。

C# Test.cs
string[] array = new string[] {"リンゴ", "めろん", "banana" };
Debug.Log( string.Join(" , ", array));

image.png
 

intの配列やListの場合もstring型で表示できます。

C# Test.cs
List<int> list  = new List<int> {555, 22, 012 };
Debug.Log( string.Join(" , ", list));

image.png

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?