我的目标是将一个长字符串输出到 SSIS 脚本组件中的 BlobColumn (Text) 中,这是执行此操作的代码。
byte[] blobdata = GetBytes(notes.Substring(0, (notes.Length < 16000 ? notes.Length : 16000)));
blobdata = blobdata.SkipWhile(x => x == 0).ToArray(); //Remove the nulls?
Row.SCNotes.AddBlobData(blobdata);
当我在记事本++中打开已将此字段输出到的文件时,它看起来像这样
原始字符串:abc
输出:a[nul]b[nul]c[nul]
我对代码做错了吗?我怎样才能不输出空值?