view Test/junge-main/data/list/replaceTest.cs @ 28:9588ad364fdd

Last commit before change.
author Kazuma Takeda
date Wed, 18 Jan 2017 19:53:29 +0900
parents 1f99e150f336
children e954d456665c
line wrap: on
line source

using UnityEngine;
using JungleDB;

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);
	}
}