I've a bit of a weird one that I think is Ninjtrader internals-related, perhaps, so I am asking for your feedback.
I have a .net 4.8 class I developed as an external dll. I added it as a reference. It all works in every aspect perfectly fin in ninjascript indies etc., except for this one thing. I have a 'save' option in the class which when called from a test project outside of NT8, works OK. The save method works by serializing the class object with a binary formatter. The load, the reverse, i.e. class = (cast)formatter.Deserialize(fs); I do this with other types in different places OK. When I do it within NT with this referenced class, I get a file not found error when the load is attempted, and that file is the referenced dll. This makes not a lot of sense as the DLL is obviously already being used in the various NT8 indies just fine. It's only when you try to serialize and desirealise and recreate the object this occurs.
Is this perhaps a known issue? Is there a workaround?
Thanks.

Comment