c# - No Hashset<T, G> for .Net? -
i'm getting using monotouch, , tried using
hashset<int, list<myclass>> i have using system.collections.generic, i'm getting error on hashset declaration, i'm getting
the type or namespace name 'hashset`2' not found. missing using directive or assembly reference?
my code having no issues list, adding in hashset issue. have idea issue?
hashset<> collection class supporting individual items, hence has 1 generic type parameter. dual parameter mapping dictionary<tkey, tvalue>.
Comments
Post a Comment