﻿class System.Collections.Generic.Dictionary<K, V> System.Collections.Dictionary : IDictionary<K, V>
	java java.util.HashMap
	python dict
	js service Hashtable
	php service Dictionary
	rust service NDict
	rustref service NDictRef
	rustprim service NDictRef

.ctor()
	java =
	python =
	js =
	php =
	rust NDict::new()
	rustref NDictRef::new()
	rustprim NDictRef::new()
	
.ctor(int)
	java new {*}()
	python {*}()
	js new {*}()
	php new {*}()

.ctor(IDictionary<TKey, TValue>)
	java =
	python =
	js =
	php =

subclass KeyCollection 
	equals ICollection<K>

subclass ValueCollection
	equals ICollection<V>
	