You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to create C# classes from asn1 specification. Has anyone tried to use asn1tools to create static classes in Python or other languages? Also is it possible to rewrite C source generator, without the limitations? If yes, i should be able to make it work for C#.
The text was updated successfully, but these errors were encountered:
You could use the C generated source as a DLL in C#. Generating Python code might not be necessary: for Python, you would use asn1tools directl .
Removing the limitations is possible, but only at the expense of using dynamic memory. The current code doesn't require dynamic memory, which is an advantage especially for embedded systems.
I need to create C# classes from asn1 specification. Has anyone tried to use asn1tools to create static classes in Python or other languages? Also is it possible to rewrite C source generator, without the limitations? If yes, i should be able to make it work for C#.
The text was updated successfully, but these errors were encountered: