如何编写表达式以在 Visual Studio 中的字符串中显示 2 个字段

How to write an expression to display 2 fields in a string in Visual Studio

我正在尝试获取两个字段并将它们显示在我的 SSReport 中的字符串中。我将如何正确编写此类场景的表达式。

Fields!Title1.Value
Fields!Title2.Value

表达式:

= Fields!Title1.Value is stored in the Fields!Title2.Value room.

在文本框中试试这个:

=CStr(Fields!Title1.Value) & CStr(Fields!Title2.Value)