我正在修改一些在这里找到的代码:http://nicholas.piasecki.name/blog/2009/03/sending-raw-epl2-directly-to-a-zebra-lp2844-via-c/#comment-1636,但是在VS 2003 / .NET 1.1中,无法识别StringBuilder的AppendLine方法,因此我将其截短为.Append。
我现在是否需要在每次调用Append之后添加#13#10左右-我假设这是AppendLine自动执行的操作。
最佳答案
是。AppendLine()
将附加其参数,后跟Environment.Newline
。
如果您不拨打AppendLine()
,则需要自己添加换行符。