﻿interface System.Collections.Generic.KeyValuePair<K, V> System.Collections.KeyValuePair 
	java java.util.Map.Entry
	python tuple
	js service KeyValuePair
	php service KeyValuePair
	rust service NKeyPairValue

.ctor(K, V)
	java =
	python ({0}, {1})
	js =
	php =

property get K Key
	java {!}.getKey()
	python {!}[0]
	js {!}.key
	php {!}->key
	rust {!}.key

property get V Value
	java {!}.getValue()
	python {!}[1]
	js {!}.value
	php {!}->value
	rust {!}.value
