Extending C# .NET application - build a custom scripting language or not?

后端 未结 9 1273
情书的邮戳
情书的邮戳 2020-12-31 10:08

I need to build a scripting interface for my C# program that does system level testing of embedded firmware.

My application contains libraries to fully interact with

9条回答
  •  鱼传尺愫
    2020-12-31 10:36

    I agree with Marc G, though it's worth mentioning that the general concept is a Domain Specific Langugage. While IronRuby/IronPython aren't strictly domain-specific, they are full-featured and it would leave you to get on with your implementation.

    Visual Studio has the DSL tools, and there's the 'M' Grammar stuff you can look into.

    But yeah, IronPython.

提交回复
热议问题