show/hide this revision's text 4 added check for null argument

EDIT: This is basically the mechanism that HtmlHelper extensions use in ASP.NET MVC. It's not original with me.


I'd favor a hybrid approach that has two different signatures. Note: I haven't tried this and there may be a conflict between the two signatures so you may have to give the second method a slightly different name to allow the compiler to choose between them, but I don't think so.

public static void tween( FrameworkElement target, object parameters )
{
    return tween( target, new ParameterDictionary( parameters ) );
}

public static void tween( FrameworkElement target,
                          ParameterDictionary values )
{
    if (values.ContainsKey( "ease" ))
    {
      ....
    }
}

Then you have a ParameterDictionary class that uses reflection on the anonymous type and sets up the dictionary.

public class ParameterDictionary : Dictionary<string,object>
{
    public ParameterDictionary( object parameters )
    {
         if (parameters != null)
         {
             foreach (PropertyInfo info in parameters.GetType().GetProperties()parameters.GetType()
                                                     .GetProperties())
             {
                 object value = info.GetValue(parameters,null);
                 this.Add(info.Name,value);
             }
         }
    }
}

This gives you both ease of use and ease of consumption -- the "ugly" reflection stuff is wrapped up in the single constructor for the dictionary rather than in your method. And, of course, the dictionary can be used over and over for similar purposes with the reflection code only written once.

show/hide this revision's text 3 derive from Dictionary to save implementation work

EDIT: This is basically the mechanism that HtmlHelper extensions use in ASP.NET MVC. It's not original with me.


I'd favor a hybrid approach that has two different signatures. Note: I haven't tried this and there may be a conflict between the two signatures so you may have to give the second method a slightly different name to allow the compiler to choose between them, but I don't think so.

public static void tween( FrameworkElement target, object parameters )
{
    return tween( target, new ParameterDictionary( parameters ) );
}

public static void tween( FrameworkElement target,
                          ParameterDictionary values )
{
    if (values.ContainsKey( "ease" ))
    {
      ....
    }
}

Then you have a ParameterDictionary class that uses reflection on the anonymous type and sets up the dictionary.

public class ParameterDictionary : IDictionaryDictionary<string,object>
{
    public ParameterDictionary( object parameters )
    {
         foreach (PropertyInfo info in parameters.GetType().GetProperties())
         {
             object value = info.GetValue(parameters,null);
             this.Add(info.Name,value);
         }
    }
}

This gives you both ease of use and ease of consumption -- the "ugly" reflection stuff is wrapped up in the single constructor for the dictionary rather than in your method. And, of course, the dictionary can be used over and over for similar purposes with the reflection code only written once.

show/hide this revision's text 2 attributed

EDIT: This is basically the mechanism that HtmlHelper extensions use in ASP.NET MVC. It's not original with me.


I'd favor a hybrid approach that has two different signatures. Note: I haven't tried this and there may be a conflict between the two signatures so you may have to give the second method a slightly different name to allow the compiler to choose between them, but I don't think so.

public static void tween( FrameworkElement target, object parameters )
{
    return tween( target, new ParameterDictionary( parameters ) );
}

public static void tween( FrameworkElement target,
                          ParameterDictionary values )
{
    if (values.ContainsKey( "ease" ))
    {
      ....
    }
}

Then you have a ParameterDictionary class that uses reflection on the anonymous type and sets up the dictionary.

public class ParameterDictionary : IDictionary<string,object>
{
    public ParameterDictionary( object parameters )
    {
         foreach (PropertyInfo info in parameters.GetType().GetProperties())
         {
             object value = info.GetValue(parameters,null);
             this.Add(info.Name,value);
         }
    }
}

This gives you both ease of use and ease of consumption -- the "ugly" reflection stuff is wrapped up in the single constructor for the dictionary rather than in your method. And, of course, the dictionary can be used over and over for similar purposes with the reflection code only written once.

show/hide this revision's text 1