Skip to content

Instantly share code, notes, and snippets.

@binki
Last active July 19, 2017 21:18
Show Gist options
  • Save binki/78301b60663b0aba627cde22e67a477b to your computer and use it in GitHub Desktop.
Save binki/78301b60663b0aba627cde22e67a477b to your computer and use it in GitHub Desktop.
Demonstration of 
Mono C# Shell, type "help;" for help
Enter statements below.
csharp> LoadAssembly("System.Xml.Linq");
csharp> using System.Xml.Linq;
csharp> (int)XElement.Parse("<x xml:space=\"preserve\">&#xd;</x>").Value[0]
13
csharp> (int)XElement.Parse("<x xml:space=\"preserve\">&#13;</x>").Value[0]
13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment