0

型引数に応じて異なる動作をするメソッドを実装する最良の方法を探しています (ここでは動的を使用できません)。

public class Methods
{
    public int someMethod1() { return 1; }
    public string someMethod2() { return "2"; }

    public ??? process(System.Type arg1) ???
    {
        if (arg1 is of type int) ??
            return someMethod1();
        else if (arg1 is of type string) ??
            return someMethod2();
    }
}

私の例が明確でない場合、ここに私の本当の必要性があります:
- 私のライブラリのユーザーは、リクエストから必要な戻り値の型を指定
できGetValueAsInt32()ますGetValueAsString().

どうもありがとう !!

4

2 に答える 2

0

興味のある仲間のために、私はたくさん検索して、ジェネリックとリフレクションを使用した解決策を思いつきました:

  • 変換の一般的な方法:
public static class MyConvertingClass
{
    public static T Convert<T>(APIElement element)
    {
        System.Type type = typeof(T);
        if (conversions.ContainsKey(type))
            return (T)conversions[type](element);
        else
            throw new FormatException();
    }

    private static readonly Dictionary<System.Type, Func<Element, object>> conversions = new Dictionary<Type,Func<Element,object>>
    {
        { typeof(bool), n => n.GetValueAsBool() },
        { typeof(char), n => n.GetValueAsChar() },
        { typeof(DateTime), n => n.GetValueAsDatetime() },
        { typeof(float), n => n.GetValueAsFloat32() },
        { typeof(double), n => n.GetValueAsFloat64() },
        { typeof(int), n => n.GetValueAsInt32() },
        { typeof(long), n => n.GetValueAsInt64() },
        { typeof(string), n => n.GetValueAsString() }
    };
}
  • 主な方法:
public static main()
{
    // Defined by the user:
    Type fieldType = typeof(double);

    // Using reflection:
    MethodInfo method = typeof(MyConvertingClass).GetMethod("Convert");
    method = method.MakeGenericMethod(fieldType);

    Console.WriteLine(method.Invoke(null, new object[] { fieldData }));
}
于 2013-07-14T16:52:09.123 に答える