source:
binary-improvements2/7dtd-server-fixes/src/JSON/JSONValue.cs@
390
Last change on this file since 390 was 389, checked in by , 2 years ago | |
---|---|
File size: 205 bytes |
Line | |
---|---|
1 | namespace AllocsFixes.JSON { |
2 | public abstract class JSONValue : JSONNode { |
3 | public abstract string AsString { get; } |
4 | public abstract int AsInt { get; } |
5 | public abstract double AsDouble { get; } |
6 | } |
7 | } |
Note:
See TracBrowser
for help on using the repository browser.