Example #1
0
 public CultureObject(string name, IDictionary <string, string> resources, CultureObject parent = null)
 {
     Name          = name;
     Resources     = (IReadOnlyDictionary <string, string>)(resources ?? new Dictionary <string, string>());
     ParentCulture = parent;
 }