// This is double escaping. Once for the encoding, and once for csharp.
String sTwo = "'test\\'\"test'";
OSD llsdTwo = NotationalLLSDOSDParser.DeserializeLLSDNotation(sTwo);
Assert.assertEquals(OSDType.String, llsdTwo.getType());
Assert.assertEquals("test'\"test", llsdTwo.asString());
// "test \\lest"
char[] cThree = { (char)0x27, (char)0x74, (char)0x65, (char)0x73, (char)0x74, (char)0x20, (char)0x5c,
(char)0x5c, (char)0x6c, (char)0x65, (char)0x73, (char)0x74, (char)0x27 };
String sThree = new String(cThree);