11 lines
219 B
Plaintext
11 lines
219 B
Plaintext
[source,csharp,diff-id=1,diff-type=compliant]
|
|
----
|
|
[Route(@"Something/[controller]")] // '\' replaced with '/'
|
|
public class HomeController : Controller
|
|
{
|
|
[HttpGet]
|
|
public ActionResult Index() => View();
|
|
}
|
|
----
|
|
|