A REPL environment for C# [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there a way to use C# interactively, inside a REPL environment like Python?

Have a look at C# script: http://www.csscript.net/

If by interactively you mean not having to manually compile or run as a console application, then yes. There are several tools that allow this.
The best, imo, is LinqPad. See: http://www.linqpad.net/

Mono offers some ways you can consider take a look at http://www.mono-project.com/CsharpRepl

Related

Is there any advanced compiler-compiler lexer/parser in C#? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I want to know Is there any compiler-compiler library that is written in C# or Not ?
I know Antlr & JavaCC but these library wrote in Java
Is there any library like antlr but in C# (or ported in C#) and open source or not ?
Can anybody introduce them ?
There is Irony. I've never used it myself though.
The C# compiler is itself written in C#, and with Roslyn, this has been made open source.
https://github.com/dotnet/roslyn
There is also a C# port of JavaCC, however, it's no longer maintained. The author switched to Irony instead. If you're just looking for code for examples, it would do that.
https://github.com/deveel/csharpcc

Tool to convert python to c# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there any tool or way in which I can convert or translate python code to c# code?
There is an opensource tool that may be useful for conversion of Python to C#:
https://github.com/uxmal/pytocs
the sample conversions in that page look promising
Hm, wouldn't it be wiser to reuse the existing Python code base via IronPython, for example?

C# apidoc typed viewer [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for a C# tool or Visual Studio Extension to visualize the typed api of all the library I use (because there is not type in the msdn doc, and some library have no apidoc).
What do you mean by typed api ? You can use the Object browser in Visual Studio if you want to look into the signatures of the dll you are referencing.
Or if you want to generate documentation for a library you can use tools like GhostDoc

free .NET translation libraries [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for a .net C# library that can do translations. I tried googles one but they charge money now for it.
I am looking for something that can preferably auto detect languages, translate blocks of text or download the entire page and convert it.
This all has to of course be done through code.
Thanks
Have you tried using bing?
http://www.microsofttranslator.com/
There is a translator .net library on codeplex that uses bing: http://translateit.codeplex.com/

Example client implementation for the Service Location Protocol? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Does anyone know of a good example implementation of the Service Location Protocol that can be build/ran on a windows box?
OpenSLP is said to compile fine on Windows.
OpenSLP referenced above is the code base that Novell uses for its SLP implementation for eDirectory now a days. Not too many things really use SLP for real these days. Usually more of a half hearted implementation

Categories

Resources