What is the VB statement expression Chr(0)
equivalent in C#?
Thanks for any help.
The equivalent I believe is '\0'
I deleted the comment as I thought it is more appropriate to update in the post :)
sValue = vValue + Chr(0) 'As mentioned in your comment
can be written as
sValue += "\0";