I need a programming language to make tiny applications. As a C++ programmer, I think C++ is not practical for this purpose, because it takes too much effort to create a new application from scratch and to deploy it. However, I'd like to use a language equally powerful, so I was wondering whether C# can be used as a scripting language?
|
3
|
|||||||||||||||
|
closed as subjective and argumentative by Developer Art, Mehrdad Afshari, Workshop Alex, redsquare, dmckee Sep 30 at 1:08 |
|
|
Read this one CS-Script - The C# Script Engine
and |
||
|
|
|
An other useful tool if you want to use C# for scripting is http://www.mono-project.com/CsharpRepl : a C# interactive prompt from the mono team. I'd say that Mono in particular provides all of the tools to use C# as a very effective scripting language, and nearly anything you write in will run fine in .net if thats your main target environment. |
||
|
|
|
|
You could try Python, which is both a very understandable and powerful language. It is possible to parse/execute Python from many languages. For example: Use SWIG to use C++ code in Python or Boost to embed Python code in your C++ app. |
||||
|
|
|
I would say that the usual benefits of a scripting language are:
These are not features of C#, so a language that can do pretty much all that would be powershell, as it uses .net so it has access to all the features you might use in c#. |
||
|
