This release does not contain any new features. It fixes several issues found in the 1.0.1.74 release.
Fixed: Async on single CPU systems
The implementation of async may throw an exception or block execution on single CPU systems.Fixed: Nested interface constants classes could be non-visible
Nested interface constants classes (e.g. ContactsContract.ISyncColumnsConstants) can be nested protected and as such not visible to you as a programmer. Now all such classes are public.Fixed: Nested try/catch blocks with catch(object) are incorrect
Sometimes the C# compiler generates a try/catch block with a catch(System.Object) handler. If you combine that with a catch(System.Exception) handler, the order of catch handlers becomes invalid.Now all catch(System.Object) handlers are compiled as catch-all handler, solving the order issue.
No comments:
Post a Comment