I'm a fan of option (b) myself - passing an anonymous type and parsing out the values using reflection.
I've seen others achieve the same thing using lambda expressions. The calling syntax would be:
tween(frameworkElement, ease => "out", duration => 15);
And the declaration would be something along the lines of:
public static void tween(FrameworkElement target, params Expression<Func<object>>[] parameters) { ... }
The idea is that you can take a variable number of "functions which return object". You then parse the name of the parameter out of each Expression<TDelegate>, and invoke each one to get its value.
I don't think this is any better than reflecting over an anonymous type, but it's another approach to consider.
Update
I have actually written about the idea of passing associative arrays as dictionaries on my blog, here and here.
