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

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -