codice:
public const string CR_LF = "\r\n";

//oppure

public const string CR_LF = (char)13 + (char)10;
HTH