I’m wondering if there is a way to detect elements in a public list being added and this being flagged as a non-default value?
Currently I have tried:
[DefaultValue(typeof(List), “”)]
public List testVar
and
[DefaultValue(typeof(List), null)]
public List testVar
But neither get the little vertical, yellow, modified tag when a list is assigned to them. Any thoughts? If this could be extended to include a comparison to a default value that was an actual list that would also be useful to me (but less critical right now).