0

I'm aware that a subset of WinRT is a modified Silverlight 5 as explained in this answer. As someone with knowledge about the Silverlight API it would be very useful to know what SL features are actually missing. I know about the WinRT Genome Project, which tells me that it will be little - but not what it actually is. Wading through the difference lists is tedious and also potentially misleading, as some members or classes might simply be renamed.

Does somebody know of a concise list of missing SL features in WinRT?

Community
  • 1
  • 1
John
  • 6,693
  • 3
  • 51
  • 90
  • Actually it shows the difference: http://timgreenfield.blob.core.windows.net/programmerpayback/Genome/SL5_WinRT/index.html – ken2k Aug 22 '12 at 12:17
  • 2
    This is not a good way to go about it. WinRT is a very basic redesign of the native Windows interface. They made things look as familiar as possible, supporting XAML and the language projection built into the CLR help a lot. But just about *all* .NET classes are affected, even core ones like System.String. Too many differences to list. – Hans Passant Aug 22 '12 at 12:37
  • @Passant According to the WinRT Genome Project, not a single one of the methods of System.String present in SL is missing in WinRT. The additions don't interest me at this point. Basically I'd be happy with the listings they provide if those would be more accessible (eg don't list additions) and accounted for renamers (which I know to exist). I made some simple porting tests from existing SL code and so far I found _no_ missing feature, so it can't be that much. – John Aug 22 '12 at 20:06
  • @ken2k That's the list I called tedious and potentially misleading in my question. :) – John Aug 22 '12 at 20:07

1 Answers1

1

Check out http://xamldialects.codeplex.com. That tool will allow you to actually explore the differences and similarities between any of the XAML dialects (WPF, SL, Windows Phone, and WinRT).

  • That's cool, I could certainly get my answer out of this tool as it comes with sources. – John Aug 23 '12 at 11:14