In C #, we can define a complex string with @:
string str = @"This is the first line.\r\nThis is still the first line";
like in c ++? if we have something like this, we don’t need to use the '\' sign conversion for all special characters.
source
share