Csharp Escape Unescape tool helps you to escape and Unescape Csharp string when you want to output the Csharp directly not interpreted by browser.
How to Escape/ Unescape Csharp?
- To Escape/ Unescape your Csharp data add/ copy and paste the Csharp data into the input.
- You can also load the Csharp data from the url by clicking the button or load the Csharp data from the computer by clicking the button.
- Click the 'Escape' or 'Unescape' button to process the data.
- Once conversion is done you can download the file by clicking the button.
SQL To YAML Example
Input Data
static void Main(string[] args)
{
Console.Write("Hello World");
Console.ReadKey();
}
After Escape
static void Main(string[] args) \r\n{\r\n Console.Write(\"Hello World\");\r\n\r\n Console.ReadKey();\r\n}