C# Console/CLI Interpreter?

后端 未结 17 1976
眼角桃花
眼角桃花 2020-12-24 07:57

I wonder if there is something like a standalone Version of Visual Studios \"Immediate Window\"? Sometimes I just want to test some simple stuff, like \"DateTime.Parse(\"bla

17条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-24 08:01

    Try the C# REPL Script Environment that is part of the O2 Platform. It is exactly what you are asking for.

    It will give you a perfect environment to try out all C# features and APIs (conceptually the O2 REPL environment is similar to LinqPAD)

    You should also take a look at Roslyn from Microsoft. On Multiple Roslyn based tools (all running Stand-Alone outside VisualStudio) , the first one is a simple Roslyn REPL

提交回复
热议问题