我正在从this tutorial制作Crypter,但我无法编译它 - 4个错误。
第一个错误:
My.Computer.FileSystem.WriteAllBytes(saveFile, System.Text.Encoding.Default.GetBytes(originalStubContents & "@splitter@" & XOR("passphrase", originalFileContents)), False)
描述:预期的表达式(带下划线的XOR)
第二个错误:
My.Computer.FileSystem.WriteAllBytes(saveFile, System.Text.Encoding.Default.GetBytes(originalStubContents & "@splitter@" & XOR("passphrase", originalFileContents)), False)
描述:期望结束语句(带下划线的False)
第三个错误:
My.Computer.FileSystem.WriteAllBytes(System.IO.Path.GetTempPath & "temp1928.exe", Encoding.Default.GetBytes(XOR("passphrase", originalContents)), false)
Desciption:预期的表达式(带下划线的XOR)
最后 - 第四个错误:
My.Computer.FileSystem.WriteAllBytes(System.IO.Path.GetTempPath & "temp1928.exe", Encoding.Default.GetBytes(XOR("passphrase", originalContents)), false)
描述:期望结束语句(带下划线的假)
你能帮助我吗? 如果您无法修复我的说明中的错误,您可以下载我的项目here。