What gives more performance?
Use normal arrays like string[]
Or is it better to use IList or IDictionary instead?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I would think the performance is identical – in the end, when the message is serialized into XML and sent across the wire, the XSD’s capability of representing a list of elements is used, no matter which approach you use in your C# code.