Changeset 279 for binary-improvements/7dtd-server-fixes/src/JSON
- Timestamp:
- Jun 19, 2016, 1:52:31 PM (8 years ago)
- Location:
- binary-improvements/7dtd-server-fixes/src/JSON
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/JSON/JSONBoolean.cs
r187 r279 3 3 namespace AllocsFixes.JSON 4 4 { 5 public class JSONBoolean : JSON Node5 public class JSONBoolean : JSONValue 6 6 { 7 7 private bool value; -
binary-improvements/7dtd-server-fixes/src/JSON/JSONNull.cs
r188 r279 3 3 namespace AllocsFixes.JSON 4 4 { 5 public class JSONNull : JSON Node5 public class JSONNull : JSONValue 6 6 { 7 7 public JSONNull () -
binary-improvements/7dtd-server-fixes/src/JSON/JSONNumber.cs
r187 r279 4 4 namespace AllocsFixes.JSON 5 5 { 6 public class JSONNumber : JSON Node6 public class JSONNumber : JSONValue 7 7 { 8 8 private double value; -
binary-improvements/7dtd-server-fixes/src/JSON/JSONString.cs
r187 r279 4 4 namespace AllocsFixes.JSON 5 5 { 6 public class JSONString : JSON Node6 public class JSONString : JSONValue 7 7 { 8 8 private string value;
Note:
See TracChangeset
for help on using the changeset viewer.