Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# @ before string

//You might have seed @ before strings like this
string str = @"";
//It stops the string from escaping the  character
str = "
";
//str is NewLine character
str = @"
";
//str is 
 
PREVIOUS NEXT
Tagged: #string
ADD COMMENT
Topic
Name
2+2 =