将unicode字符串添加到数据表行显示空白

时间:2019-03-08 22:25:13

标签: c# string

我正在创建一个数据表并向其中添加行。我是C#编码的新手。 问题是我可以看到所有行,但当我尝试添加值为"\u0011\u0002\u0003\u0004\u0005\u0006"的字符串时,该行始终显示空白。请帮忙。如何显示实际的字符串值。

这是我的代码

                if (RFIDInfoTable == null)
                {
                    RFIDInfoTable = new DataTable();
                }
                RFIDInfoTable.Columns.Add("Header", typeof(string));
                RFIDInfoTable.Columns.Add("Value", typeof(string));

                RFIDInfoTable.Rows.Add("Barcode", !string.IsNullOrEmpty(RFIDInfo.Barcode) ? RFIDInfo?.Barcode : "N/A"); //This one always display blank but when I debug I can see the string value.

0 个答案:

没有答案