XName x =“字符串”?

发布于 2024-09-04 08:17:22 字数 49 浏览 5 评论 0原文

当我遇到它时我忘记了铸造机制:)。那么你能让我再次记住它吗?因为目前看来我无法接受。

I forgot casting mechanism when i encounter it :) . So can u make me remember it again ? Because it looks not acceptable for me at the moment.

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

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

发布评论

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

评论(1

单挑你×的.吻 2024-09-11 08:17:22

XName 具有从字符串的隐式转换。来自 MSDN

创建 XName 对象

XName 不包含任何公共构造函数。相反,此类提供了 String 的隐式转换,允许您创建 XName。最常使用此转换的地方是构造元素或属性时:XElement 构造函数的第一个参数是 XName。通过传递字符串,您可以利用隐式转换。

该声明如下所示:

public static implicit operator XName(string expandedName);

XName has an implicit conversion from string. From MSDN:

Creating an XName Object

XName does not contain any public constructors. Instead, this class provides an implicit conversion from String that allows you to create an XName. The most common place you use this conversion is when constructing an element or attribute: The first argument to the XElement constructor is an XName. By passing a string, you take advantage of the implicit conversion.

The declaration looks like this:

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