Can anyone help me please!
I tried to implement something that in C# is:
var keysIO = Observable.FromEvent<KeyDownEventHandler, RoutedEventArgs>(
h => new KeyDownEventHandler(h),
h => btn.KeyDown += h,
h => btn.KeyDown -= h));
How to write that in VB?
Thank you,
R
I first got your code to compile on my machine:
Then I opened it in Reflector and modfied to