using System.Collections.Generic;
namespace XmlSerializersTest.Samples
{
[Title("Generic dictionary that is never null")]
public class GenericDictionaryFixNull
{
public GenericDictionaryFixNull()
{
Things = new Dictionary<int, string>();
}
public Dictionary<int, string> Things { get; set; }
}
}
|