This sample allows you to highlight C# source code. Highlighting is based on http://hilite.me web service, which is called from a background job in a truly asynchronous way – neither controller, nor any other entity is waiting for a completion. Results are delivered via WebSockets using SignalR.

All the snippets are removed every day at 12:00 AM UTC.

app.UseSwagger();
app.UseSwaggerUI();
 public string Get(int id)
        {
            return "value";
        }
        public string Get(int id)
        {
            return "value";
        }
Console.WriteLine("Hello, world!");