source:
binary-improvements/7dtd-server-fixes/src/JSON/JSONBoolean.cs@
173
Last change on this file since 173 was 154, checked in by , 10 years ago | |
---|---|
File size: 314 bytes |
Line | |
---|---|
1 | using System; |
2 | |
3 | namespace AllocsFixes.JSON |
4 | { |
5 | public class JSONBoolean : JSONNode |
6 | { |
7 | private bool value; |
8 | |
9 | public JSONBoolean (bool value) |
10 | { |
11 | this.value = value; |
12 | } |
13 | |
14 | public override string ToString () |
15 | { |
16 | return value.ToString (System.Globalization.CultureInfo.InvariantCulture).ToLower (); |
17 | } |
18 | |
19 | } |
20 | } |
21 |
Note:
See TracBrowser
for help on using the repository browser.