Last active
July 19, 2017 21:18
-
-
Save binki/78301b60663b0aba627cde22e67a477b to your computer and use it in GitHub Desktop.
Demonstration of 
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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\">
</x>").Value[0] | |
13 | |
csharp> (int)XElement.Parse("<x xml:space=\"preserve\"> </x>").Value[0] | |
13 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment