1
Vote

MonoTouch Support

description

1) Change InvalidDataException to a supported exception type (build a new one?)
2) Change Huffman.BuildLinkedList()'s Array.Sort() to use an explicit IComparer instead of a lambda

comments

jjxtra wrote Feb 13 at 7:27 PM

2 is not necessary at least with the latest monotouch, it compiles fine for me

ioctlLR wrote Feb 14 at 12:37 PM

jjxtra:

2 is weird. Basically the bug report is that the lambda is not statically compiled and causes an InvalidOperationException on a physical iOS device (because the lambda is JIT'ed, which is not allowed).

If you can figure out how to force MonoTouch to statically compile the lambda, that would be preferable.