Ignore:
Timestamp:
Aug 7, 2022, 3:02:24 PM (2 years ago)
Author:
alloc
Message:

Major refactoring/cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements2/7dtd-server-fixes/src/JSON/JSONString.cs

    r389 r391  
    22
    33namespace AllocsFixes.JSON {
    4         public class JSONString : JSONValue {
     4        public class JsonString : JsonValue {
    55                private readonly string value;
    66
    7                 public JSONString (string _value) {
     7                public JsonString (string _value) {
    88                        value = _value;
    99                }
     
    1414
    1515                public override void ToString (StringBuilder _stringBuilder, bool _prettyPrint = false, int _currentLevel = 0) {
    16                         if (value == null || value.Length == 0) {
     16                        if (string.IsNullOrEmpty (value)) {
    1717                                _stringBuilder.Append ("\"\"");
    1818                                return;
     
    6464                }
    6565
    66                 public static JSONString Parse (string _json, ref int _offset) {
     66                public static JsonString Parse (string _json, ref int _offset) {
    6767                        //Log.Out ("ParseString enter (" + offset + ")");
    6868                        StringBuilder sb = new StringBuilder ();
     
    104104
    105105                                                //Log.Out ("JSON:Parsed String: " + sb.ToString ());
    106                                                 return new JSONString (sb.ToString ());
     106                                                return new JsonString (sb.ToString ());
    107107                                        default:
    108108                                                sb.Append (_json [_offset]);
     
    112112                        }
    113113
    114                         throw new MalformedJSONException ("End of JSON reached before parsing string finished");
     114                        throw new MalformedJsonException ("End of JSON reached before parsing string finished");
    115115                }
    116116
Note: See TracChangeset for help on using the changeset viewer.