-
-
Save ayseff/d73de3152e5ae66af4b0a300819a87fb to your computer and use it in GitHub Desktop.
A super simple "Hello World" Controller for ASP.NET Web API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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