Running Scripts from C# Application

Run Powershell-Script from C# Application
http://stackoverflow.com/questions/11120452/run-powershell-script-from-c-sharp-application

How to run PowerShell scripts from C#
http://www.codeproject.com/Articles/18229/How-to-run-PowerShell-scripts-from-C

Python for C# Developers, By Michael Kennedy
http://www.codemag.com/article/1407051

A 3 minute guide to embedding IronPython in a C# application
http://www.secretgeek.net/host_ironpython

Is it possible to dynamically compile and execute C# code fragments?
http://stackoverflow.com/questions/826398/is-it-possible-to-dynamically-compile-and-execute-c-sharp-code-fragments
http://msdn.microsoft.com/en-us/library/y2k85ax6.aspx
http://blogs.msdn.com/b/lukeh/archive/2007/07/11/c-3-0-and-codedom.aspx
It depends on your precise needs. Two ways I can think of:

Use a language like Python which is interoperable with C#, and call the Python script from C#. Actually, you can even make things simpler by just calling an executable, passing to it an XML or JSON data, and wait for XML or JSON response.

If you need to use C#, then compile C# on the fly, just like LINQPad does. Is it possible to dynamically compile and execute C# code fragments? is a good starting point. Loading the code in a sandbox (in a different AppDomain) is also a good idea if you need to provide enough security and don’t trust the code which can be written by the user.
ref http://programmers.stackexchange.com/questions/210901/scripting-support-in-a-c-application

 

json to c# data class generators

http://json2csharp.com/

http://www.httputility.net/json-to-csharp-vb-typescript-class.aspx

http://jsonutils.com/

What’s the difference between DataContractJsonSerializer and JavaScriptSerializer?
http://stackoverflow.com/questions/9301878/whats-the-difference-between-datacontractjsonserializer-and-javascriptserialize

Json.NET: Popular high-performance JSON framework for .NET
http://www.newtonsoft.com/json

JSON serialization – DataContractJsonSerializer vs JavaScriptSerializer
http://theburningmonk.com/2011/05/json-serialization-datacontractjsonserializer-vs-javascriptserializer/

Serializing and Deserializing JSON
http://www.newtonsoft.com/json/help/html/serializingjson.htm

run python from csharp code
http://www.codeproject.com/Articles/657698/Python-Visual-Studio-and-Csharp-So-Sweet

Running IronPython Scripts from a C# 4.0 Program
http://blogs.msdn.com/b/charlie/archive/2009/10/25/hosting-ironpython-in-a-c-4-0-program.aspx

 

TypeScript vs. CoffeeScript vs. ES6
http://www.slideshare.net/NeilGreen1/type-script-vs-coffeescript-vs-es6

 

Project-less scripted C# with ScriptCS and Roslyn
http://www.hanselman.com/blog/ProjectlessScriptedCWithScriptCSAndRoslyn.aspx

 

Which online Python course is the best?
https://www.quora.com/Which-online-Python-course-is-the-best