C# REPL

2299 단어 csharpdotnet
빠른 C# REPL을 사용하면 작은 코드 조각을 테스트하는 데 많은 도움이 될 수 있습니다.

.NET 바이올린



가장 빠른 것은 아마도 .NET Fiddle 이며 웹 브라우저에서 액세스할 수 있으며 설정이나 등록이 필요하지 않습니다.



csi.exe


View > Other Windows > C# Interactive의 Visual Studio에 C# REPL이 있습니다.



다음이 열립니다:



Visual Studio 외부에서 직접 실행할 수도 있습니다csi.exe.



내 Windows 컴퓨터에 Visual Studio 2017 Enterprise 및 Visual Studio 2019 Community가 설치되어 있으면 다음에서 찾을 수 있습니다.

C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\Roslyn\csi.exe

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\Roslyn\csi.exe


dotnet 스크립트


csi.exe는 아직 Linux에서 .NET Core를 사용하는 사람들에게 제공되지 않는 것 같습니다. 다행히 dotnet-script이 있습니다.

$ dotnet tool install -g dotnet-script
You can invoke the tool using the following command: dotnet-script
Tool 'dotnet-script' (version '0.53.0') was successfully installed.
$ dotnet script
> Math.Pow(3, 2)
9


다른 대안



직접 테스트하지는 않았지만 빠른 검색은 LINQPadCS-Script을 대안으로 제공합니다.

좋은 웹페이지 즐겨찾기