Is there a c# compiler/runtime for js in the browser

19 views Asked by At

basically dotnetfiddle as a js library such that I can do something like:

dotnetfiddle.Run(`
using System;
                    
public class Program
{
    public static void Main()
    {
        Console.WriteLine("Hello World");
    }
}`);

and it would run in the DotNet Dlls/runtimes

0

There are 0 answers