Author Topic: TNSerializer bug  (Read 1359 times)

luvcraft

  • Newbie
  • *
  • Thank You
  • -Given: 2
  • -Receive: 1
  • Posts: 11
    • View Profile
TNSerializer bug
« on: August 25, 2014, 08:03:36 PM »
got another TNSerializer bug for ya! :)

line 752 should be
  1. bw.Write(elemType);
NOT
  1. bw.Write(type);
This one's been driving me nuts for a while (it kept failing to deserialize Lists, telling me that it couldn't covert List[List[foo]] to List[foo]), and I finally got around to digging into it this afternoon. This only affects ILists; you had the code setup correctly for TLists. :)

ArenMook

  • Administrator
  • Hero Member
  • *****
  • Thank You
  • -Given: 337
  • -Receive: 1171
  • Posts: 22,128
  • Toronto, Canada
    • View Profile
Re: TNSerializer bug
« Reply #1 on: August 26, 2014, 03:45:15 AM »
Thanks!