L
Luigi
Hi all,
I have an object (named Voice) that has a dictionary like this:
public Dictionary<string, decimal?> Values;
Voice is like an Excel cell, the "string" is the name of the column and
decimal nullable is its value.
Now we have discovered that tha value is not only numeric, but can be also a
description (a string).
How can I refactor my code to incapsulate this new feature?
Thanks in advance.
I have an object (named Voice) that has a dictionary like this:
public Dictionary<string, decimal?> Values;
Voice is like an Excel cell, the "string" is the name of the column and
decimal nullable is its value.
Now we have discovered that tha value is not only numeric, but can be also a
description (a string).
How can I refactor my code to incapsulate this new feature?
Thanks in advance.