is there an equivelent in C#

I want to write to a textbox and add empty lines in between words.

In VB I could just do:

txtTextBox = "Name " & vbCrLF

in C#, i'm currently doing:

txtTextBox = "Name " + (char)13 + (char)10;

there must be something in C#