I have over 500 pieces of data (each containing 4 strings) which I want to load in my WindowsPhone application in several pages, using a ScrollViewer + Grid to display the information in TextBlocks. I thought of doing this with XML, but it didn’t seem too appealing regarding speed. Is there a faster or officially preferred way to do this?
Share
Although results can vary depending on the object graph being used,
Binary Serializationis often a good way to go. The trade off is that it’s not as versatile or easy to use, but you’ll likely gain speed advantages. There’s a comparison table here showing different types of serialization and deserialization.