view Test/junge-main/data/list/replaceTest.cs @ 20:1f99e150f336

fix folder and add Object Mapper.
author Kazuma Takeda
date Thu, 15 Dec 2016 22:52:48 +0900
parents
children 9588ad364fdd
line wrap: on
line source

using UnityEngine;

public class replaceTest : MonoBehaviour {

	// Use this for initialization
	void Start () {
		List<int> list = new List<int> ();
		for (int count = 0; count < 10; count++) {
			list = list.addLast (count);
            Debug.Log("list" + list.tail());
		}
		List<int> newList = list.replace (5, 15);
		int attribute = list.index (5);
		Debug.Log (attribute);
		attribute = newList.index (5);
		Debug.Log (attribute);
	}
}