var item1 = new PropertyStoreItem(typeof(String), "Name", "Value", "", "Category 1", false);
var item2 = new PropertyStoreItem(typeof(String), "Name", "Value", "", "Category 2", false);
store.Add(item1);
store.Add(item2);
System.ArgumentException
Additional information: An item with the same name already exists in the collection. Item name: Name
Q: How do I add two categories with properties with the same name?
var item2 = new PropertyStoreItem(typeof(String), "Name", "Value", "", "Category 2", false);
store.Add(item1);
store.Add(item2);
System.ArgumentException
Additional information: An item with the same name already exists in the collection. Item name: Name
Q: How do I add two categories with properties with the same name?