I am trying to do a deep clone of tags
using ValueInjecter
Here is the code.
IList<Tag> processTags = new List<Tag>();
processTags.InjectFrom(tags);
The second line throws parameter count mismatch
Why is it so and how do I overcome it?
I am trying to do a deep clone of tags
using ValueInjecter
Here is the code.
IList<Tag> processTags = new List<Tag>();
processTags.InjectFrom(tags);
The second line throws parameter count mismatch
Why is it so and how do I overcome it?