如何将类字段连接成此方法的单个字符串。
public string PrintInfomation()
{
string message = this.title + " written by" + this.author + "is" this.price "dollars, with ISBN" + this.isbn;
return message;
}
单独使用第一个字段标题可以正常工作,但当我尝试添加其他字段时,我得到一个错误,期待;
答案 0 :(得分:2)
+
this.price.