我正在浏览System.Web.Mvc
库,但不知道如何导航到资源文件。
我看到这样一行代码...
throw new ArgumentException(MvcResources.Common_NullOrEmpty, "contentPath");
所以我点击了Common_NullOrEmpty
,这带来了这里
// System.Web.Mvc.Resources.MvcResources
internal static string Common_NullOrEmpty
{
get
{
return MvcResources.ResourceManager.GetString("Common_NullOrEmpty", MvcResources.resourceCulture);
}
}
我试过搜索Common_NullOrEmpty
没有结果。
这些资源埋在哪里?更重要的是,我将如何自己找到这个?