It looks like NSUserDefaults.Synchronize is translated wrong. In Objective-C the definition is:

- (BOOL)synchronize

However, in Monobjc we get:

public virtual bool Synchronize
{
get { return ObjectiveCRuntime.SendMessage<bool>(this, "synchronize"); }
}

though synchronize is actually a method and not a property.

Reply via email to