C++/CX Windows ストア アプリ用に .Net の Action および Func デリゲート ジェネリックを使用したいと考えています。それらも WinRT の一部ですか?
delegate void f( int );
ref class Sample
{
...
event f^ Rendered; // this works
event Action<int>^ Rendered; // ??? I want something like this using existing lib without creating templates on my own (which Namespace/Header) ???
...
}