What is the VB statement phrase "Chr(0)" equivalent in C#?

c#, vb6, vb6-migration

Solution

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";

Problem

What is the VB statement expression `Chr(0)` equivalent in C#? Thanks for any help.

Original source