If I have a comma separated list string property:
"age:123,name:john,last:doe"
And another property of Dictionary type.
How could I keep both of these properties synchronized such that added to either one will update the other.
example:
obj.CsvString += "address:123 drive";
or
obj.SomeDic.Add("address", "123 drive");
How could I do this? Should there be other methods to adding/removing?