我想本地化我的 MVC 应用程序,然后我想使用方法,并且在这里w(message)
回答“flem” ,我有以下代码:
namespace System.Web.WebPages
{
public static class Localization
{
public static string w(this WebPageBase page, string message)
{
return message;
}
}
}
但在 razor page( page.cshtml
) 中我不能使用@w("hi")
但@this.w("hi")
可以工作。我想知道它是如何this.method()
工作但method()
不起作用的?