Example #1
0
	public bool HasMember(Supernaturals o) {
		return dict.ContainsValue (o);
	}
Example #2
0
	public void RegisterMember(string key, Supernaturals who) {
		if (dict.ContainsKey (key))
			dict.Remove (key);
		dict.Add (key, who);
	}