castle
castle copied to clipboard
Arrays/List in custom types
When a custom type is defined, it can't contain List or Array structures
enum EventConsequence { Goto( e : events ); IfThenElse( if : List<EventCondition>, then : List<EventConsequence>, else : List<EventConsequence> ); }
throws " Unknown type List<EventCondition> "
Actually not very easy to add : custom types parameters types are Column types, and there's currently no Column type of Array, TList being an Array of structures. I'll keep it open but don't expect it soon.
@ncannasse There doesn't seem to be support for custom type lists yet?