Hi I m currently converting a delphi code into .net they have this encryption in their database I have decrypted but the problem is the output is in byte array.
在这方面,我刚才所做的事情
Private Function EnDeCrypt(ByVal Value As String) As String
Dim transformed = Encoding.Unicode.GetBytes(Value).Select( _
Function(item) Not item)
Return Encoding.Unicode.GetString(transformed.ToArray())
End Function
Result : o »3¶1⁄2 = e d p l i b (unprintable chars)
my problem is how to convert the output to string
Suggestions and help are greatly appreciated