C# genrics
using arrays we persist either key or values of the dictionary, then how can we use array to persist both keys & values combinedly???using System; using System.Collections.Generic; using...
View ArticleC# genrics
using arrays we persist either key or values of the dictionary, then how can we use array to persist both keys & values combinedly???
View ArticleC# genrics
Hi,You cannot expose Dictionary<(Of <(TKey, TValue>)>) Class to COM. You need to use Array or Array list.
View ArticleC# genrics
according to the above links we can convert List to Array...What about "Dictionary", how do we expose dictionary through .NET COM????
View ArticleC# genrics
Hi, The COM model does not support the concept of generic types. Consequently, generic types cannot be used directly for COM interop. If you expose Generic types ot COM, it may throw the error 'Type...
View ArticleC# genrics
Is there a way to expose generics through C# COM library, if no then how could this be handled?
View Article