K
K Viltersten
I'd like to use an array-like construction where i can
use strings as indicies. Example:
ThatTypeIWant<int> stuff = new ThatTypeIWant<int>();
stuff["uno"] = 2;
stuff["duo"] = 1;
Does such type i want exist and what is its name?
use strings as indicies. Example:
ThatTypeIWant<int> stuff = new ThatTypeIWant<int>();
stuff["uno"] = 2;
stuff["duo"] = 1;
Does such type i want exist and what is its name?