You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The NetObjectCache is very humble in the matter of relying on the .NET ref tracking. I am not familiar with the CF limitations but why did you hit all the PCL world the same way?
#if CF || PORTABLE // CF has very limited proper object ref-tracking; so instead, we'll search it the hard way
index = list.IndexOfReference(value);
#else
The NetObjectCache is very humble in the matter of relying on the .NET ref tracking. I am not familiar with the CF limitations but why did you hit all the PCL world the same way?