6 ms·
> Can I map multiple custom types to the same C# type? :) Yes that is totally fine. In C# side both would be represented as "long[]", the generated code would
by delaconcha 3y ago
> Can I map multiple custom types to the same C# type? :)
Yes that is totally fine. In C# side both would be represented as "long[]", the generated code would use the appropriated encoding for the custom type, as provided by the user methods.
- zigzag312 3y agoThat's so awesome! This looks like the most well-designed IDL-based binary serialization format I have ever seen. Well done!