Hi Ferdinand,
I edited your code in this post, to avoid null reference exceptions when no entries are set in the module. My edit was to replace this:
private List<Entry> m_Entries;
with this:
private List<Entry> m_Entries = new List<Entry>();
Let me know if you think I should set the code back to what it was. Thanks again for your code
I edited your code in this post, to avoid null reference exceptions when no entries are set in the module. My edit was to replace this:
private List<Entry> m_Entries;
with this:
private List<Entry> m_Entries = new List<Entry>();
Let me know if you think I should set the code back to what it was. Thanks again for your code
Available for freelance work, feel free to reach out: toolbuddy.net
Please consider leaving a review for Curvy, this helps immensely. Thank you.
Please consider leaving a review for Curvy, this helps immensely. Thank you.

