System.Web.Mvc Vs Microsoft.Web.Mvc(System.Web.Mvc 与 Microsoft.Web.Mvc)
问题描述
我刚开始使用 ASP.NET MVC,首先让我感到困惑的是 MSDN 上有一个 System.Web.Mvc 命名空间,然后有一个Microsoft.Web.Mvc 命名空间.我想知道 -
I just started ASP.NET MVC, and the first thing that got me confused is on MSDN there is a System.Web.Mvc namespace, and then there is a Microsoft.Web.Mvc namespace. I'd like to know -
- 为什么 ASP.NET MVC 框架库类有两个不同的根命名空间?
- 基于一个根命名空间或另一个根命名空间下的类?
提前致谢.
注意:我进行了谷歌搜索,但一无所获.
NOTE: I did google search, and found nothing about it.
推荐答案
Microsoft.Web.Mvc 命名空间如果用于 MVC Futures 项目,它用于 MVC 团队可能或可能不会的功能包括在 ASP.NET MVC 的未来版本中.与之相关的文档很少,但您可以查看这里的源代码.
The Microsoft.Web.Mvc namespace if for the MVC Futures project, which is for features that the MVC team may or may not include in future versions of ASP.NET MVC. There is very little documentation associated with it, but you can view the source code here.
例如,它包括 Microsoft.Web.Mvc.Controls 命名空间,在 这个博客,但它从未成功.
As an example, it includes the Microsoft.Web.Mvc.Controls namespace, which is discussed in this blog, but it never got off the ground.
这篇关于System.Web.Mvc 与 Microsoft.Web.Mvc的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:System.Web.Mvc 与 Microsoft.Web.Mvc
基础教程推荐
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- WPF 模态进度窗口 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
