Skip to content

Instantly share code, notes, and snippets.

@AlexZeitler
Created April 27, 2013 20:38
Show Gist options
  • Save AlexZeitler/5474610 to your computer and use it in GitHub Desktop.
Save AlexZeitler/5474610 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() {
return "Hello World";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment