Browse by Tags

All Tags » Application Design » Theory (RSS)
To make it easier, I created this following method: public void AddAttribute(string name, object value) { this.Attributes.Add(new MetadataAttribute(name, value)); } This made it easier to add methods, but it added overhead. I changed the MetadataAttribute...