Question:What is the output of the following code:
class CCheck { public static void Main() { string str = @"E:\\RIL\\test.cs"; Console.WriteLine(str); } }
A "E:\\RIL\\test.cs"
B E:\\RIL\\test.cs
C "E:\RIL\test.cs"
D The compiler will generate an error saying undefined symbol '@'.
+ AnswerB
+ Report