C# 未知类型

发布于 2024-11-01 18:20:35 字数 410 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

oО清风挽发oО 2024-11-08 18:20:35

正如 Joel 所说,当使用泛型类型时,您无法在运行时动态设置对象的类型。

在您的代码片段中,

Deserialize<deserialzeType>("text");

“deserializeType”必须是编译器可识别的类型 - 它不能是您设置为编译器可识别的某种类型的类型变量。

As Joel said, when using generic types, you cannot dynamically set the type for objects at run time.

In your snippet

Deserialize<deserialzeType>("text");

"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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文