Looking for a way to pass an associative array to a method. I'm looking to rewrite an Actionscript tween package in C# but running into trouble with "associative" arrays/objects. Normally in Actionscript I might do something like:
public function tween(obj:DisplayObject, params:Object = null):void {
if (params.ease != null) {
//do something
}
//...
}
And this could be called like:
tween(this, {ease:'out', duration:15});
I'm looking for a way to do the same in C#. So far, I've gathered my options to be:
a) creating a class or struct to define the possible param keys and types and pass that
b) pass the parameters as generic type
tween(frameworkElement, new {ease = 'out', duration = 15});
assuming
public static void tween(FrameworkElement target, object parameters);
and figure out some way to use that in the tween function (I'm not sure how to separate the key=value's given that object. any ideas?)
c) create a Dictionary<string, object> to pass the parameters into the tween function
Any other ideas or sample code? I'm new to C#.
Edit
I tried the last post, ended up with
Took me all day to figure this :
public class ParameterDictionary : Dictionary<string,object>
{
public ParameterDictionary(object parameters)
{
foreach (PropertyInfo info in parameters.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance))
{
string propName = info.Name;
// throws exception here
object propValue = info.GetValue(parameters, null);
Debug.WriteLine(propName);
//this.Add(info.Name, value);
}
}
}
With creation as suggestedout:
var pd = new ParameterDictionary(new { ease =
"outbounce", duration = 1 });
But I'm getting an error on the info.GetValue()Anonymous types cannot be shared across assembly boundaries. I can see The compiler ensures that the keys and values are set by setting a break point, but it there is still throwing the MethodAccessException exceptionat most one anonymous type for a given sequence of property name/type pairs within each assembly. Any ideas?To pass structures between assemblies you will need to properly define them."
