net_development
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| net_development [2017/02/04 02:07] – shawn | net_development [2017/08/01 22:24] (current) – [Formatting] String to XML code shawn | ||
|---|---|---|---|
| Line 29: | Line 29: | ||
| * [[https:// | * [[https:// | ||
| * [[http:// | * [[http:// | ||
| + | |||
| + | ==== String -> XML ==== | ||
| + | |||
| + | <code lang=" | ||
| + | using (var sb = new StringReader(tokenString)) | ||
| + | using (var reader = new XmlTextReader(sb)) | ||
| + | { | ||
| + | reader.Read(); | ||
| + | } | ||
| + | </ | ||
| ==== Tools ==== | ==== Tools ==== | ||
| Line 68: | Line 78: | ||
| * [[http:// | * [[http:// | ||
| + | |||
| + | ==== JSON & JSON Schema ==== | ||
| + | |||
| + | Visual Studio 2013 includes support for JSON editing, including JSON Schema, as described in // | ||
| + | |||
| + | > **TIP:** Disabling //Show errors as warnings// (Options -> Text Editor -> JSON -> Advanced) will give you better visibility of syntax errors. | ||
| + | |||
| + | === Extensions === | ||
| + | |||
| + | * [[https:// | ||
| + | * [[http:// | ||
| + | * //Relax Mode// - less strict errors/ | ||
| + | * //Insert Closing Char// (e.g. braces) | ||
| + | |||
net_development.1486174065.txt.gz · Last modified: by shawn
