This otherwise great open source collection won't build on the Windows 7 Phone because it uses Serializable and the ICloneable interface, which is internal within Silverlight based frameworks. Does there exist an alternative or a ported version?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I recommend downloading the source from CodePlex and building it in a WP7 application. What we do when we share code across platforms like this where specific attributes are not supported, is to add stub classes to the Silverlight project for the unsupported attributes. This allows the source to compile on all platforms without needing change. For example, here is our stub for Serializable:
You may also find that there are unsupported method overloads (Silverlight has fewer overloads for various methods). If this is the case, you can just use conditional compilation to provide the correct overload for the missing methods. |
|||||||||
|