C Sharp (C#) - Strings and StringBuilder
What is the output of this C# code?
string path = @"C:\Users\Admin"; string raw = """C:\Users\Admin"""; Console.WriteLine(path == raw);
