On Aug 1, 2012, at 12:08 AM, shares <[email protected]> wrote:
> I'm running into a couple of 'Namespace does not exist errors' like these for 
> starters:
> 
> System.Collections.Specialized.IOrderedDictionary
> System.Windows.Threading.DispatcherObject
> 
> I'm having trouble figuring out what to do to get past these errors.

You get past them by not using them; they don't exist. You need to modify your 
code to use other types.

_In general_, the Mono for Android types are a superset of the Silverlight 
types. IOrderedDictionary isn't in Silverlight:

        
http://msdn.microsoft.com/en-us/library/system.collections.specialized.iordereddictionary.aspx#versionsTitleToggle

DispatcherObject         doesn't exist in Sliverlight either. Dispatcher does; 
however, it's in System.Windows.dll, which isn't part of the Mono for Android 
profile:

        
http://msdn.microsoft.com/en-us/library/system.windows.threading.dispatcher(VS.95).aspx#ctl00_MTCS_main_ctl05

 - Jon

_______________________________________________
Monodroid mailing list
[email protected]

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to