|
|
|
|
|
by hu3
296 days ago
|
|
There's `dotnet run` now. You can: vim projects/example.cs var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/", () => "Hello World!");
app.Run();
dotnet run projects/example.csNot the same as PHP I know, but it's close enough for me. |
|
PHP:
C#: