In c# why (char)(1) + (char)(2) results in int 3(在 c# 为什么 (char)(1) + (char)(2) 导致 int 3)
问题描述
我正在尝试将一些 VB.NET 代码转换为 C#,并发现了这个有趣的东西.添加两个字符会在 VB.NET 和 C# 中返回不同的结果.
I am trying to covert some VB.NET code to C# and found this interesting thing. Adding two chars returns different results in VB.NET and C#.
VB.NET - 返回字符串
Chr(1) & Chr(2) = " "
C# - 返回整数
(char)(1) + char(2) = 3
如何在 C# 中添加(连接)两个字符?
How can i add(concatenate) two chars in C#?
推荐答案
在 C# 中 char 是 16 位数字类型,所以 + 表示加法,而不是串联.因此,当您添加 a 和 b 时,您会得到 a+b.此外,此添加的结果是一个 int(查看快速演示).
In C# char is a 16-bit numeric type, so + means addition, not concatenation. Therefore, when you add a and b you get a+b. Moreover, the result of this addition is an int (see a quick demo).
如果添加两个字符"是指连接",则在应用运算符 + 之前将它们转换为字符串是一种选择.另一种选择是使用 string.Format,如下所示:
If by "adding two characters" you mean "concatenation", converting them to a strings before applying operator + would be one option. Another option would be using string.Format, like this:
string res = string.Format("{0}{1}", charA, charB);
这篇关于在 c# 为什么 (char)(1) + (char)(2) 导致 int 3的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 c# 为什么 (char)(1) + (char)(2) 导致 int 3
基础教程推荐
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
