这是我在网上找到的加密/解密方法.....
我只是想知道这个方法的名称
(我正在使用asp.net c#)
public ActionResult About()
{
ViewBag.Message = "Your app description page.";
try
{
int message = Convert.ToInt32("Hello");
}
catch (Exception exp)
{
Elmah.ErrorSignal.FromCurrentContext().Raise(exp);
// throw;
}
return View();
}