问题出在 Main 中间的那行
if ((byte[])Dts.Variables["User::EncryptionKey"].Value == noKey)
当 GetEncryptionKey“失败”并返回 noKey 时,“if”仍然采用“else”路径,我不明白为什么。我尝试了这个,结果相同。
if (noKey.Equals((byte[])Dts.Variables["User::EncryptionKey"].Value))
除非对 noKey 的每个引用都以某种方式实例化 byte[0] 的新副本,否则我看不出它们如何不相等。我已经走过无数次了,它们看起来确实是一样的。
private static byte[] noKey = new byte[0];
public void Main()
{
int keyLen = 32;
Dts.Variables["User::EncryptionKey"].Value =
GetEncryptionKey((string)Dts.Variables["User::EncryptionKeyAsHex"].Value, keyLen);
if ((byte[])Dts.Variables["User::EncryptionKey"].Value == noKey)
{
Dts.TaskResult = (int)ScriptResults.Failure;
}
else
{
Dts.TaskResult = (int)ScriptResults.Success;
}
}
private static byte[] GetEncryptionKey(string hexString,int numBytes)
{
return noKey; //<-this definitely does get hit!
}