Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
182 views

Is System.AddIn mostly about making it easier to use Remoting or does it make it harder to do so?

It takes at least 7 assemblies and restricting my AddIn's data model to data types that remoting can deal with before the appdomain isolation features begin to work. It is so complex! The ...
0
votes
1answer
92 views

Unnecessary null check in KeyedCollection<TKey, TItem>.Contains(TKey)

Just found an unnecessary null check in KeyedCollection.Contains(TKey). Appreciate it's only a very small optimization, but shouldn't thought this sort of inefficiency be picked up by an automated ...