-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sharing the same dictionary between InputFormatContext and OutputFormatContext seems like a bad idea to me. You should clone the dictionary before providing it to the OutputFormatContext. However this was not an option to you since you didn't have the proper method to do that. The good news is that I've just added the Let me know whether that fixes your issue and whether you need a tag 👍 |
Beta Was this translation helpful? Give feedback.
Sharing the same dictionary between InputFormatContext and OutputFormatContext seems like a bad idea to me. You should clone the dictionary before providing it to the OutputFormatContext. However this was not an option to you since you didn't have the proper method to do that. The good news is that I've just added the
Dictionary.Copy()
method inmaster
which allows you to do just that.Let me know whether that fixes your issue and whether you need a tag 👍