- Timestamp:
- Aug 7, 2022, 1:11:51 AM (2 years ago)
- Location:
- binary-improvements2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2
- Property svn:ignore
-
old new 1 .idea 1 2 bin 2 .idea 3 server-fixes.sln.DotSettings.user
-
- Property svn:ignore
-
binary-improvements2/7dtd-server-fixes
- Property svn:ignore
-
old new 1 bin 1 2 obj
-
- Property svn:ignore
-
binary-improvements2/7dtd-server-fixes/src/JSON/JSONObject.cs
r383 r389 7 7 8 8 public JSONNode this [string _name] { 9 get { return nodes [_name]; }10 set { nodes [_name] = value; }9 get => nodes [_name]; 10 set => nodes [_name] = value; 11 11 } 12 12 13 public int Count { 14 get { return nodes.Count; } 15 } 13 public int Count => nodes.Count; 16 14 17 public List<string> Keys { 18 get { return new List<string> (nodes.Keys); } 19 } 15 public List<string> Keys => new List<string> (nodes.Keys); 20 16 21 17 public bool ContainsKey (string _name) { 22 18 return nodes.ContainsKey (_name); 19 } 20 21 public bool TryGetValue (string _name, out JSONNode _node) { 22 return nodes.TryGetValue (_name, out _node); 23 23 } 24 24
Note:
See TracChangeset
for help on using the changeset viewer.