@@ -1050,7 +1050,7 @@ <h1>Issue 86</h1>
10501050< p > < code class ="prettyprint " id ="issue86_5 "> #One< br >
10511051Two lines</ code > </ p >
10521052
1053- < h1 > Issue 92</ h1 >
1053+ < h1 > Issue 92 -- capital letters in tag names </ h1 >
10541054< pre class ="prettyprint " id ="issue92 ">
10551055<?xml version="1.0" encoding="UTF-8"?>
10561056<kml xmlns="http://www.opengis.net/kml/2.2">
@@ -1064,6 +1064,14 @@ <h1>Issue 92</h1>
10641064 </Placemark>
10651065</kml>
10661066</ pre >
1067+
1068+ < h1 > Issue 93 -- C# verbatim strings</ h1 >
1069+ < pre class ="prettyprint lang-cs " id ="issue93 ">
1070+ // The normal string syntax
1071+ string a = "C:\\";
1072+ // is equivalent to a verbatim string
1073+ string b = @"C:\";
1074+ </ pre >
10671075</ body >
10681076
10691077< script type ="text/javascript ">
@@ -2438,22 +2446,26 @@ <h1>Issue 92</h1>
24382446 '`END`TYPTwo`END`PLN lines`END' ,
24392447 issue86_4 : '`COM#One`END`PLN<br>' +
24402448 '`END`TYPTwo`END`PLN lines`END' ,
2441- issue92 : '`PUN<?`END`PLNxml version`END`PUN=`END`STR"1.0"`END`PLN encoding`END`PUN=`END ' +
2449+ issue92 : '`PUN<?`END`PLNxml version`END`PUN=`END`STR"1.0"`END`PLN encoding`END`PUN=`END' +
24422450 '`STR"UTF-8"`END`PUN?>`END`PLN<br>' +
2443- '`END`TAG<kml`END`PLN `END`ATNxmlns`END`PUN=`END`ATV"http://www.opengis.net/kml/2.2"`END ' +
2451+ '`END`TAG<kml`END`PLN `END`ATNxmlns`END`PUN=`END`ATV"http://www.opengis.net/kml/2.2"`END' +
24442452 '`TAG>`END`PLN<br>' +
24452453 ' `END`TAG<Placemark>`END`PLN<br>' +
24462454 ' `END`TAG<name>`END`PLNSimple placemark`END`TAG</name>`END`PLN<br>' +
2447- ' `END`TAG<description>`END`PLNAttached to the ground. ' +
2455+ ' `END`TAG<description>`END`PLNAttached to the ground.' +
24482456 ' Intelligently places itself <br>' +
2449- ' at the height of the underlying terrain.`END ' +
2457+ ' at the height of the underlying terrain.`END' +
24502458 '`TAG</description>`END`PLN<br>' +
24512459 ' `END`TAG<Point>`END`PLN<br>' +
2452- ' `END`TAG<coordinates>`END ' +
2460+ ' `END`TAG<coordinates>`END' +
24532461 '`PLN-122.0822035425683,37.42228990140251,0`END`TAG</coordinates>`END`PLN<br>' +
24542462 ' `END`TAG</Point>`END`PLN<br>' +
24552463 ' `END`TAG</Placemark>`END`PLN<br>' +
2456- '`END`TAG</kml>`END'
2464+ '`END`TAG</kml>`END' ,
2465+ issue93 : '`COM// The normal string syntax`END`PLN<br>' +
2466+ '`END`KWDstring`END`PLN a `END`PUN=`END`PLN `END`STR"C:\\\\"`END`PUN;`END`PLN<br>' +
2467+ '`END`COM// is equivalent to a verbatim string`END`PLN<br>' +
2468+ '`END`KWDstring`END`PLN b `END`PUN=`END`PLN `END`STR@"C:\\"`END`PUN;`END'
24572469} ;
24582470</ script >
24592471
0 commit comments