重複の可能性:
文字列名からアセンブリにクラスインスタンスを作成します
タイプの文字列表現を使用して、その文字列表現からMyClass
のインスタンスを作成しますMyClass
。
私のコードのコメントを参照してください:
interface MyData
{
string Value { get; }
}
class MyClass : MyData
{
public MyClass(string s)
{
Value = s;
}
public string Value { get; private set; }
public static explicit operator MyClass(string strRep)
{
return new MyClass(strRep);
}
public static implicit operator string(MyClass inst)
{
return inst.Value;
}
}
class Program
{
static void Main(string[] args)
{
MyClass inst = new MyClass("Hello World");
string instStr = inst; //string representation of MyClass
string instTypeStr = inst.GetType().FullName;
// I want to be able to do this:
MyData copyInst = (instTypeStr)instStr; // this would throw an error if instTypeStr did not inherit MyData
// Then eventually:
if (instTypeStr.Equals("MyClass"))
{
MyClass = (MyClass)copyInst;
}
}
}