文字列から Foo というオブジェクトへの明示的な変換を実装しました。
そう => Foo f = (Foo)"foo データ"; 作品
文字列をジェネリック T にキャストする関数を実装する必要があります。この場合、T は Foo データ型です。
public T Get<T>(object o){
// this always return false
if (typeof(T).IsAssignableFrom(typeof(String)))
{
// when i by pass the if above this throws invalid cast exception
return (T)(object)str;
}
return null;
}
// When I call this, it generated an error
// Invalid cast from 'System.String' to Foo
Foo myObj = Get<Foo>("another foo object");
// when I use the dynamic keyword it works but this is C# 4.0+ feature, my function is in the older framework
return (T)(dynamic)str;