- Timestamp:
- Aug 9, 2017, 7:43:07 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/JSON/JSONNull.cs
r279 r309 1 1 using System; 2 using System.Text; 2 3 3 4 namespace AllocsFixes.JSON … … 9 10 } 10 11 11 public override string ToString (bool prettyPrint = false, int currentLevel = 0)12 public override void ToString (StringBuilder stringBuilder, bool prettyPrint = false, int currentLevel = 0) 12 13 { 13 return "null";14 stringBuilder.Append ("null"); 14 15 } 15 16
Note:
See TracChangeset
for help on using the changeset viewer.