source: binary-improvements/7dtd-server-fixes/src/JSON/JSONString.cs@ 158

Last change on this file since 158 was 154, checked in by alloc, 10 years ago

fixes

File size: 271 bytes
Line 
1using System;
2
3namespace AllocsFixes.JSON
4{
5 public class JSONString : JSONNode
6 {
7 private string value;
8
9 public JSONString (string value)
10 {
11 this.value = value;
12 }
13
14 public override string ToString ()
15 {
16 return string.Format ("\"{0}\"", value);
17 }
18
19 }
20}
21
Note: See TracBrowser for help on using the repository browser.