Skip to content

Instantly share code, notes, and snippets.

@JeansBolong
Last active December 28, 2020 03:20
Show Gist options
  • Save JeansBolong/0b206c1561b9e701893637641d26437c to your computer and use it in GitHub Desktop.
Save JeansBolong/0b206c1561b9e701893637641d26437c to your computer and use it in GitHub Desktop.
Unity c#

output list value

private void outputlist(ArrayList list){
        string result = "isi list: ";
        for (int i = 0; i < list.Count; i++)
        {
            result += list[i].ToString() + ",";
        }
        Debug.Log(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment