不能应用于类型为

不能应用于类型为

本文介绍了运算符'&'不能应用于类型为'string'和'string'的操作数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试以下代码:

string text = "";
char c = 'd';
text += "abc" & c.ToString();

..但返回错误运算符'&"不能...' .即使没有ToString(),它也不起作用.将char转换为字符串有什么问题?

..but it returns an error 'Operator '&' cannot...' . It don't works even without ToString(). What's the problem converting char to string?

推荐答案

在C#中,您不使用& 进行字符串连接,而是使用 +

You don't use & for string concatentation in C#, you use +

string text = "";
char c = 'd';
text += "abc" + c;

这篇关于运算符'&'不能应用于类型为'string'和'string'的操作数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 01:25