如何在 FormatString 中使用百分比 % 而不将其乘以 100?

发布于 2024-11-06 11:23:01 字数 314 浏览 1 评论 0原文

我想将整数格式化为百分比,而不将其乘以 100,如下所示 此处。因为我的源是一个 int,所以先将其除以 100 不是一个有效的选项。这可能吗?

[DisplayFormat(DataFormatString = "{0:#%}")]

I would like to format an integer as a percent without it multiplying by 100 as shown here. Because my source is an int, dividing it first by 100 is not a valid option. Is this possible?

[DisplayFormat(DataFormatString = "{0:#%}")]

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

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

发布评论

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

评论(4

温馨耳语 2024-11-13 11:23:01

您可以转义 % 字符:

[DisplayFormat(DataFormatString = @"{0:#\%}")]

请注意,有两种方法可以使用 \ 作为转义字符:如果您使用逐字符号 (@),那么 \ 字符将按原样包含在字符串中,这意味着作为格式字符串的一部分,单个 \ 将用作转义字符。

如果没有 @ 逐字符号,\ 会被编译器解释为转义字符串 ,因此需要自行转义,如 \\。

选择其中之一,但不能同时选择两者:

@"{0:#\%}"  -> right
"{0:#\\%}"  -> right
@"{0:#\\%}" -> wrong

You can escape the % character:

[DisplayFormat(DataFormatString = @"{0:#\%}")]

Note that there are two ways to use \ as an escape character: if you prefix a string literal with the verbatim symbol (@), then \ characters are included in the string as-is, which means that as part of a format string a single \ will function as an escape character.

Without the @ verbatim symbol, \s are interpreted as escape strings by the compiler and as such need to be escaped themselves, as \\.

Pick one or the other, but not both:

@"{0:#\%}"  -> right
"{0:#\\%}"  -> right
@"{0:#\\%}" -> wrong
薄情伤 2024-11-13 11:23:01

将 % 放在 {0:..} 之外

[DisplayFormat(DataFormatString = "{0:0.00}%")]

Put the % outside the {0:..}

[DisplayFormat(DataFormatString = "{0:0.00}%")]
超可爱的懒熊 2024-11-13 11:23:01

从您的链接页面:

\
转义字符

导致下一个字符被解释为文字而不是自定义格式说明符。

[DisplayFormat(DataFormatString = "{0:#\\%}")]

From your linked page:

\
Escape character

Causes the next character to be interpreted as a literal rather than as a custom format specifier.

[DisplayFormat(DataFormatString = "{0:#\\%}")]
不奢求什么 2024-11-13 11:23:01

如果值为 0,则格式 @"{0:#%}" 仅显示 %。它应该显示 0%。所以正确的格式是

[DisplayFormat(DataFormatString = @"{0:#0\%}")]

哈希后有一个额外的零。

If the value is 0, the format @"{0:#%}" displays just a %. It should display 0%. So the correct format is

[DisplayFormat(DataFormatString = @"{0:#0\%}")]

There is an extra zero after the hash.

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