什么是 C# 的良好读取、评估、打印、循环实现?

What is a good Read, Eval, Print, Loop implementation for C#?(什么是 C# 的良好读取、评估、打印、循环实现?)
本文介绍了什么是 C# 的良好读取、评估、打印、循环实现?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

一些编程语言实现提供了读取、评估、打印循环交互式外壳,允许程序员评估表达式和程序片段,并以增量、交互式方式进行编程.

Some programming language implementations provide a Read, Evaluate, Print Loop interactive shell to allow the programmer to evaluate expressions and program fragments, and to program in an incremental, interactive manner.

您使用并喜欢过哪些 C# REPL 实现?如果有一个可以与 Visual Studio 集成的软件,那就太好了.

What implementations of a C# REPL have you used, and liked? It would be nice to have one that could integrate with Visual Studio as well.

我已经找到但没有尝试过 Mono C# REPL 和 Don Box 的 C# REPL

I have found, but not tried, the Mono C# REPL and Don Box's C# REPL

推荐答案

Mono 自带一个 REPL 工具,名为 "csharp".我刚刚在 Mac OS X 上尝试过它,它就像魔法一样工作.它目前唯一缺少的功能是 Intellisense,承诺将出现在 Mono 2.6 中

Mono comes with a REPL tool called "csharp". I just tried it on Mac OS X and it works like magic. The only feature it currently lacks is Intellisense, promised to appear in Mono 2.6

这篇关于什么是 C# 的良好读取、评估、打印、循环实现?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)