C# 未知类型
public T Deserialize<T>(string input);
以及对象
object deserialzeType;
如何将其类类型从对象解析为该函数?
Deserialize<deserialzeType>("text");
我正在尝试将 HttpWebResponse 反序列化为具体类型,但我想动态地进行。我想调用函数 GetResopnse 并在输入参数中用于反序列化的类。像这样的东西:
ParseIntoClass result = HttpResponse.GetRespond(ParseIntoClass);
public T Deserialize<T>(string input);
and object
object deserialzeType;
how i can parse it class type from object into into this function ?
Deserialize<deserialzeType>("text");
I am trying deserealize HttpWebResponse into concrete type, but i want to do dynamically. I want call function GetResopnse and in input parameter, class for deserialing into. Something like this:
ParseIntoClass result = HttpResponse.GetRespond(ParseIntoClass);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 Joel 所说,当使用泛型类型时,您无法在运行时动态设置对象的类型。
在您的代码片段中,
“deserializeType”必须是编译器可识别的类型 - 它不能是您设置为编译器可识别的某种类型的类型变量。
As Joel said, when using generic types, you cannot dynamically set the type for objects at run time.
In your snippet
"deserializeType" must be a Type recognized by the compiler - it cannot be an Type variable that you've set to be some type recognized by the compiler.