CSharp - Write program to print URL such as \\One\\Two.

Requirements

Write program to print URL such as \\One\\Two.

Hint

Use escape or put @ in front of string literal.

Demo

using System;

public class MainClass
{
    public static void Main(String[] argv)
    {//from   w ww . ja  v a2s  . com
        string urlEx = @"\\One\\Two";
        Console.WriteLine(urlEx);

    }
}

Result