如何将我Class1
的对象或对象类转换为 a String
,然后将其转换String
回可用于实例化的类型?
像这样的东西:
// class to string:
Type type1 = myObject.GetType();
string text = type1.ToString();
// and then back
Type type2 = Type.Parse(text);
// type2 should reflect the same type as type1
用枚举做到这一点真的很容易而且很好。所以我想在课堂上做到这一点。我还想避免使用序列化和 XML。我不想序列化对象,只想记住我需要为对象实例化的类。