I assume you have something like this:
void Foo(Action
And want to convert myaction so you can pass it to Foo.
That doesn't work.
Foo can pass any object to the action whose type derives from object. But myaction accepts only objects that derive from something.