How to quickly code and run small C# code

后端 未结 19 1627
再見小時候
再見小時候 2021-01-31 01:46

There are times when I want to test new code from the forums or when I need to help my friends with specific C# problem. The problem is I don\'t want to create new \"project\" i

19条回答
  •  无人及你
    2021-01-31 02:09

    Snippet Compiler is great for this.

    LINQPad is also good for testing out all sorts of C#, F# or VB code, not just LINQ queries.


    EDIT

    I suppose it's time that I mention that Snippet Compiler hasn't been updated in over five years, and is therefore no longer the best option.

    However, I undersold LINQPad originally. As Will Dean mentioned in the comments, LINQPad is excellent for all sorts of code, not just LINQ queries. In fact, it has become an indispensable tool for me. I use it daily, not only to quickly test out short snippets, but for relatively complex mini programs. Its advanced output formatting makes it extremely easy to quickly examine intermediate and final results.

提交回复
热议问题