事实证明,在 python 中构建以下字符串......
# global variables
cr = '\x0d' # segment terminator
lf = '\x0a' # data element separator
rs = '\x1e' # record separator
sp = '\x20' # white space
a = 'hello'
b = 'world'
output = a + rs + b
...与 C# 中的不同。
我如何在 C# 中完成相同的任务?