Skip to content

Instantly share code, notes, and snippets.

@ayseff
Forked from AlexZeitler/HelloWorldController.cs
Created January 21, 2018 03:35
Show Gist options
  • Select an option

  • Save ayseff/d73de3152e5ae66af4b0a300819a87fb to your computer and use it in GitHub Desktop.

Select an option

Save ayseff/d73de3152e5ae66af4b0a300819a87fb to your computer and use it in GitHub Desktop.
A super simple "Hello World" Controller for ASP.NET Web API
using System.Web.Http;
namespace KatanaWebApiAndStaticConsole {
public class HelloWorldController : ApiController {
public string Get() => "Hello World";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment