Question:Which of the following string literal is valid for backslash?
A string s1="\\\\server\\fileshare\\helloworld.cs";
B string s1=@"\\server\fileshare\helloworld.cs"
C string s1="\\server\fileshare\helloworld.cs"
D string s1=@"\/\/server\/fileshare\/helloworld.cs"
E None
+ AnswerA B
+ Report