将对象类型转换为 DataRow &数据读取器

发布于 2024-09-14 15:50:23 字数 34 浏览 1 评论 0原文

将对象类型转换为 DataRow &数据读取器

Casting an Object type to DataRow & IDatareader

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

奢华的一滴泪 2024-09-21 15:50:23

你不能只是将一个对象投射到你提到的任何一个对象上。它们必须是其中之一或派生自这些类型。

编程中没有炼金术。

You cant just cast an object to either of those you mentioned. They have to be either of those or derive from those types.

There is no alchemy in programming.

怪我入戏太深 2024-09-21 15:50:23

转换只能在兼容的类型之间进行。要转换两个不兼容的类型,您需要执行转换。

例如:您不能将字符串转换为 int,反之亦然,因为它们是不兼容的类型,因此有一种方法可以将两者相互转换。

int x = 5;
string str = string.Empty;    

str = x.ToString(); //Convert int x into string str.
x = Convert.ToInt32(str);  //Convert string str into int x.

我不想在这里写整个故事来解释转换和转换之间的区别,我宁愿建议您阅读 这个有趣的对话关于SO。请阅读Eric Lippert答案。 Eric Lippert 在 Microsoft 的 C# 编译器开发团队工作。

Casting can only happen between compatible types. To transform two incompatible types you need to perform conversion.

Ex: You cannot cast a string into int and vice versa since they are incompatible types so there is a way of converting both into one another.

int x = 5;
string str = string.Empty;    

str = x.ToString(); //Convert int x into string str.
x = Convert.ToInt32(str);  //Convert string str into int x.

Instead of writing the whole story explaining difference between casting and conversion here, I'd rather recommend you to read this interesting conversation on SO. Do read Eric Lippert's answer. Eric Lippert works with Microsoft in C# compiler development team.

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