我有以下代码:
public string GetResponse()
{
string fileName = this.Page.Request.PathInfo;
fileName = fileName.Remove(0, fileName.LastIndexOf("/") + 1);
switch (fileName)
{
case "GetEmployees":
return GetEmployees();
default:
return "";
}
}
public string GetEmployees()
{
我会有很多这样的。他们都会返回一个字符串,并想知道是否有办法避免 switch case。如果有,如果方法不存在,有没有办法返回“未找到”?
谢谢