Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created September 17, 2019 03:44
Embed
What would you like to do?
[Route("api/[controller]")]
[ApiController]
public class ValuesController : ControllerBase
{
// GET api/values
[HttpGet]
public ActionResult<IEnumerable<string>> Get()
{
return new string[] { "value1", "value2" };
}
// Other code omitted...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment