On Aug 5, 2011, at 5:34 PM, chobo2 wrote:
> I get this error when I am debugging in VS 2010 and MonoDorid. the debugger
> detaches it self and I get that error.

Could you please file a new bug with a testcase (particularly one which creates 
values for the ISharedPreferences value)? When I do:

        ISharedPreferences prefs = GetSharedPreferences ("Prefs", 
FileCreationMode.Private);

`prefs` contains no preferences. If I add some values:

        var editor = prefs.Edit();
        editor.PutBoolean ("bool", true);
        editor.PutString ("string", "string");
        editor.PutLong ("long", 42L);
        editor.PutInt ("int", 32);
        editor.Commit ();

then I can see all of the values I added, and I don't get any crash or abrupt 
application exit.

Thanks,
 - Jon

_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com

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

Reply via email to