Is there a preferable collections object when serializing over WCF? I’m trying to decide between List or IList, and wondering if it makes a difference?
Is there a preferable collections object when serializing over WCF? I’m trying to decide
Share
Does not matter from serialization point of view. There is no IList or List on the wire. Both will result in the same XML.
From MSDN: