Search Results

1
vote
3answers
785 views

Is it possible to set a default value when deserializing xml in C# (.NET 3.5)?

Hello all, I've got a little problem that's slightly frustrating. Is it possible to set a default value when deserializing xml in C# (.NET 3.5)? Basically I'm trying to deserialize some xml …
0
votes
1answer
92 views

How do you sort a parent and child collection using Linq?

Hi all, I have the following basic classes (cut down for this question): public class Parent { public string Name { get; set; } public IList<Child> Children { …