我是 C# wpf 编程的新手,但我正在尝试连接到 MySQL 数据库并散列我的密码。不幸的是,在我实现算法时,我在这段代码中遇到了错误:
byte[] plainTextWithSaltBytes = new byte[plainTextBytes.Length + saltBytes.Length];
salt.CopyTo(plainTextWithSaltBytes, 0);
plainText.CopyTo(plainTextWithSaltBytes, salt.Length);
错误是:
Error: no overload for method 'Copy To' takes 2 arguments Exceptions: System.ArgumentNullException System.ArgumentOutOfRangeException
enter code here
您是否知道导致此错误的原因以及如何解决?