What are WinRT language projections and what are they used for?

link|improve this question

67% accept rate
feedback

4 Answers

"Projections" in WinRT is another word for "Bindings".

The WinRT Language Projections are the WinRT Bindings for each Language that is supported.

For more information, check out:

WinRT Demystified - Miguel de Icaza

link|improve this answer
2  
One subtle difference is that "bindings" can be manual while "projections" are always automated - i.e. you don't sit there manually writing FFI declarations for WinRT with a projection, you just use a code, written once, that takes any WinRT component and exposes it to the language in question using the idioms of that language. – Pavel Minaev Sep 15 '11 at 20:27
feedback

Windows Runtime Projections are the way that the Windows Runtime APIs are exposed in each language. This may be at compile time (as in C++) or at runtime (as in JavaScript) or a combination (as in C#). Each language decides how to present the WinRT APIs best. Most of the time it is a direct exposure, but other times there are wrappers or redirections that may take place. Delegates and events are a good example. In C# they show up as C# delegates/events and not as WinRT-specific types. Strings likewise are remapped to be the native language string type and not the underlying hstring type.

link|improve this answer
feedback

The easiest way to clarify is that a language projection in WinRT is the "front end" whereas the Windows Runtime is the backend. Write from one of the three languages (JS, C#, VB), it behaves identically on the back end.

If you write your own 3rd Party WinRT component in C++ or C#, you can use it from JS, C# and VB without having to do any extra work.

link|improve this answer
feedback

What ever language(c#,c++, Javascript, etc) you choose, All these are translated to same identical code which will be executed by Win RT.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.