再生:
スニペット 1:
class A{
A(int i){}
A(string s){}
A(Form b){}
A(Stream b){}
//...more constructors but no one accepts object type
}
スニペット 2:
A assign(object obj)
{
dynamic d=obj;
//do something with d or obj?
A a=new A(d);
return a;
}
ラインを機能させるにはA a=new A(d);
?
編集:
A a=new A(d);
動的型メカニズムなしでラインを動作させる方法は?