tags:

views:

56

answers:

1

Hi

I have an iPhone client talking to a Windows server written in C#.The data from the device is sent as a binary plist.I am looking for a framework in C# that understands the binary plist and converts it into a dataset. On googling, I ran into plutil but that's a CLI and I need something that does it inline with the application.

Thanks

+1  A: 

I don’t know of any library for Windows that does this. But you might want to take the property list reading code from The Cocotron and port it to C#. It shouldn’t be too hard to do that.

Sven
@Sven Fascinating .. Cocotron. I did not know about that. Thanks.
unhillbilly