.NET for Windows 8 配置文件中的程序集列表
我正在寻找“.NET for Windows 8”配置文件中的程序集列表。这是用于 WIndows 8 Metro 风格应用程序的配置文件,与 Silverlight 一样,它不使用完整的 .NET 框架。
I am looking for the list of assemblies in the ".NET for Windows 8" profile. This is the profile used for WIndows 8 Metro-style applications, and like Silverlight doesn't use the full .NET framework.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
.NET for Metro 风格应用 — 列表命名空间
转换现有的 .NET Framework 代码 — 更改为各种 API。
.NET for Metro style apps — list of namespaces
Converting your existing .NET Framework code — changes to the various APIs.
我目前没有看到任何列表...WinRT 预计会发生很大变化,直到 2012 年正式发布...有关程序集的当前信息/在“Metro/WinRT 客户端配置文件”中不可用:
http://blogs.microsoft.co.il/blogs/sasha/archive/2011/09/17/metro-net-framework-profile-windows-tailored.aspx
I don't see any list currently... and WinRT is expected to change alot till the official release in 2012... current information about assemblies/not available in the "Metro/WinRT Client profile":
http://blogs.microsoft.co.il/blogs/sasha/archive/2011/09/17/metro-net-framework-profile-windows-tailored.aspx
Metro 配置文件中可用的完整配置文件部分不由某些程序集或命名空间分隔。例如,构造函数
StremReader(Stream)
存在于 Metro 配置文件中,但StreamReader(string)
则不存在。因此,您必须查看文档 找出到底什么是可用的,什么是不可用的。
The parts of the full profile that are available in the Metro-profile aren't delimited by some assemblies or namespaces. For example, the constructor
StremReader(Stream)
is present in the Metro-profile, butStreamReader(string)
isn't.Because of that, you would have to look at the documentation to find out what exactly is available and what isn't.