Search found 11 matches

by tunied
Wed Sep 06, 2017 8:17 am
Forum: (Legacy) Easy Save 2 General Discussion
Topic: How to S/L a list with sub class in ES2
Replies: 2
Views: 5959

How to S/L a list with sub class in ES2

Data Structure [Serializable] public class CreatureVo { public int creatrueType; public int blood; public override string ToString() { return string.Format("Creature-> type:{0} blood:{1}", creatrueType, blood); } } [Serializable] public class FishVo : CreatureVo { public int color; public ...