Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AbubakarSiddiq/261fc0c2ebf7df3409558afdb287df04 to your computer and use it in GitHub Desktop.
Save AbubakarSiddiq/261fc0c2ebf7df3409558afdb287df04 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace FiltersDemo.Controllers
{
public class HomeController : Controller
{
[ActionName("Name")]
public string StudentName()
{
return RollNumber();
}
[NonAction]
public string RollNumber()
{
return "This is student Roll Number Method";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment