F # in the immediate window

Is there such a way in which I get:

  • F # in the direct window in Visual Studio,
  • Something functionally equivalent to a direct window with F #

while working with a C # project?

To clarify, the closest window behaves as expected. I am looking to be able to use something like fsi with the same context as the closest window (paused in a debugger capable of working with local / private functions / call). Third-party solutions and hackers are welcome if they work.

+4
source share
1 answer

F # Interactive? , . F # Interactive REPL (Read-Eval-Print-Loop) F # Visual Studio.

. https://msdn.microsoft.com/en-us/library/dd233175.aspx

+1

Source: https://habr.com/ru/post/1620164/


All Articles