Active Script in C# .NET

  • Thread starter Thread starter Fernando
  • Start date Start date
F

Fernando

Was active script support added to .NET ( i didnt find in the docs ) or
would i have to use interoperability stuff ? Or even betters , is there a
new way do add scripting to you desktop application?

Thanks.
 
Was active script support added to .NET ( i didnt find in the docs ) or
would i have to use interoperability stuff ? Or even betters , is there a
new way do add scripting to you desktop application?

There is. Have a look at JScript.NET (comes with .NET runtime), or
IronPython.
 
i think this jscript.net is related to asp.net server side script. I want
the users of my desktop software to be able to write scripts to interact
with the software, like in ActiveScript.
If anybody has an example of this using jscript.net, please let me know.
By the way i could not find much info on jscript.net on msdn. seems dead.

bye.

"Pavel Minaev" <[email protected]> escreveu na mensagem
Was active script support added to .NET ( i didnt find in the docs ) or
would i have to use interoperability stuff ? Or even betters , is there a
new way do add scripting to you desktop application?

There is. Have a look at JScript.NET (comes with .NET runtime), or
IronPython.
 
i think this jscript.net is related to asp.net server side script.

It is not. It is a general-purpose scripting language for .NET, and
can be used on server and desktop alike. No additional components are
needed - it comes with .NET Framework.
If anybody has an example of this using jscript.net, please let me know.
By the way i could not find much info on jscript.net on msdn. seems dead.

http://msdn.microsoft.com/en-us/library/72bd815a.aspx

Also, don't forget about IronPython:

http://www.codeplex.com/IronPython
 
Back
Top