Hashtable.Remove 移除

function Remove (key : object) : void

Description描述

Removes the element with the specified key from the Hashtable.

从哈希表中移除指定键的元素。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public Hashtable h;
	public void Awake() {
		h = new Hashtable();
		h.Add("1", "one");
		h.Add("2", "two");
		h.Remove("1");
		Debug.Log(h.Count);
	}
}
// Creates a Hashtable with two values and removes one
//创建一个具有2个值的哈希表并移除一个

var h : Hashtable;
h = new Hashtable();
h.Add("1","one");
h.Add("2","two");
h.Remove("1");
Debug.Log(h.Count)
最后修改:2011年3月10日 Thursday 16:24

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。