What is the VB statement expression Chr(0) equivalent in C#?
Thanks for any help.
|
What is the VB statement expression Thanks for any help. |
||||
|
You can use |
|||
|
|
The equivalent I believe is I deleted the comment as I thought it is more appropriate to update in the post :)
can be written as
|
|||||||||||||
|
|
The equivalent would be (char)0 . If you are looking for escape sequences and other characters you can use \n and likewise |
|||
|
|
You can try this yourself using this website |
|||||
|
Chr(0)is not the best option, you should use thevbNullCharconstant as it doesn't require runtime evaluation. – Deanna Jun 13 '12 at 11:01