Hi,
I found an issue with EventDelegates (on windows phone 8 ), it's working fine when delegate is assigned using inspector, but fails when using from code.
ex. x.SetOnFinished(new EventDelegate(delegate() {....}) );
It shows error about method not found from class.
When reverting back to 3.6.1 for EventDelegate.cs, all works.
Reverting back to following line
mMethod = type.GetMethod(mMethodName, BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public);
Thanks!