How to convert actionscript code into c code?
Can anybody suggest how to convert actionsc开发者_运维技巧ript to c code?
There is no automatic way of doing that. The languages offer very different sets of features.
You'll have to do it manually, preferably in a top-down manner. This means that when making the C implementation, write the most abstract functionality first, gradually going into the details.
精彩评论