Requirement:
Invoke R script (on server) via C#, e.g. via webapi. Here restful endpoint receives parameter (e.g. via GET request) and results from R execution is returned (e.g. as JSON).
I am aware of this:
How do I run a Python script from C#?
which could be adapted to work with R, see also:
running R from windows command prompt
I am also aware of rdotnet:
https://archive.codeplex.com/?p=rdotnet
Just wondering, which is the recommended way of integrating R and .Net at this point in time?