string str = @""";
string str = """;
Both of them are syntactically wrong. But I dont exactly know why.
How does the compiler/interpreter process the two definitions above?
when the compiler encounters [@"], whether will it jump to the end of the code line to find [;] or just process the line left to right?
string str = """;
Both of them are syntactically wrong. But I dont exactly know why.
How does the compiler/interpreter process the two definitions above?
when the compiler encounters [@"], whether will it jump to the end of the code line to find [;] or just process the line left to right?
Comment