Search found 2 matches

by LaP0573
Tue Mar 14, 2023 10:14 am
Forum: General Discussion
Topic: Properly serialized class is loaded as null
Replies: 3
Views: 6261

Re: Properly serialized class is loaded as null

Thanks for the fast response! That was the issue indeed, I updated to the latest version and it now works! Crazy I didn't think of checking for an update, my version was from November :x (and yeah a typo slipped into my code snippets, meant to inherit ARelic, not implement IRelic ! Was juggling betw...
by LaP0573
Mon Mar 13, 2023 5:54 pm
Forum: General Discussion
Topic: Properly serialized class is loaded as null
Replies: 3
Views: 6261

Properly serialized class is loaded as null

We have an interface (IRelic) implemented by an abstract class (ARelic) itself implemented by lots of classes. The goal is to save all relics into a List. Here is the list of classes : public interface IRelic { public string Name { get; } public string Description { get; } public RelicRarity Rarity ...