問題は、B の元の値、または C または A の元の値を取得したいことです。コードは次のとおりです。
Dim strA As String = "A"
Dim strB As String = "B"
Dim strC As String = "C"
Dim result As Byte = 0
' Fetch the byte character code of strings and Xor them all into the result in a sequence.
result = result Xor AscW(strA)
result = result Xor AscW(strB)
result = result Xor AscW(strC)
' the final result value is 64
これを行う方法?この問題の正しい解決策を教えてください。式を適用すると元の値が明らかになる可能性がある別のパラメーターがある場合: "A"、"B"、"C"。ありがとうございました。