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.
.NET for Metro style apps — list of namespaces
Converting your existing .NET Framework code — changes to the various APIs.
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
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, but StreamReader(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.
精彩评论