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
다른 대안
직접 테스트하지는 않았지만 빠른 검색은 LINQPad 및 CS-Script을 대안으로 제공합니다.
Reference
이 문제에 관하여(C# REPL), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/tallesl/c-repl-gkn
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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
다른 대안
직접 테스트하지는 않았지만 빠른 검색은 LINQPad 및 CS-Script을 대안으로 제공합니다.
Reference
이 문제에 관하여(C# REPL), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/tallesl/c-repl-gkn
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
$ 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
직접 테스트하지는 않았지만 빠른 검색은 LINQPad 및 CS-Script을 대안으로 제공합니다.
Reference
이 문제에 관하여(C# REPL), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/tallesl/c-repl-gkn텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)