Skip to content

Commit 02b076f

Browse files
authored
Merge pull request #12 from mukeshydv/development
Development
2 parents 101459a + 0c124e7 commit 02b076f

File tree

10 files changed

+597
-334
lines changed

10 files changed

+597
-334
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Mukesh Yadav
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ Visit: https://jsonmaster.github.io
77
1. **Swift**
88
- [Codable](https://developer.apple.com/documentation/foundation/archives_and_serialization/using_json_with_custom_types)
99
- [SwiftyJSON](https://github.com/SwiftyJSON/SwiftyJSON)
10+
- [Swift Dictionary](https://developer.apple.com/swift/blog/?id=37)
1011
2. **Java**
1112
- [Gson](https://github.com/google/gson)
1213
- [Android/JSONObject](https://developer.android.com/reference/org/json/JSONObject)
1314
3. **C#**
1415
- [Newtonsoft](https://www.newtonsoft.com/json/help/html/SerializingJSON.htm)
15-
- C# Class
16+
- C# Class

languages/CSharpClass.json

Lines changed: 77 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,83 @@
11
{
22
"modelStart": "{\n",
33
"reservedKeywords": [
4-
"abstract",
5-
"assert",
6-
"boolean",
7-
"break",
8-
"byte",
9-
"case",
10-
"catch",
11-
"char",
12-
"class",
13-
"const",
14-
"continue",
15-
"default",
16-
"do",
17-
"double",
18-
"else",
19-
"enum",
20-
"extends",
21-
"false",
22-
"final",
23-
"finally",
24-
"float",
25-
"for",
26-
"goto",
27-
"if",
28-
"implements",
29-
"import",
30-
"instanceof",
31-
"int",
32-
"interface",
33-
"long",
34-
"native",
35-
"new",
36-
"null",
37-
"package",
38-
"private",
39-
"protected",
40-
"public",
41-
"return",
42-
"short",
43-
"static",
44-
"strictfp",
45-
"super",
46-
"switch",
47-
"synchronized",
48-
"this",
49-
"throw",
50-
"throws",
51-
"transient",
52-
"true",
53-
"try",
54-
"void",
55-
"volatile",
56-
"while",
57-
"class",
58-
"description",
59-
"string",
60-
"object"
4+
"abstract",
5+
"as",
6+
"base",
7+
"bool",
8+
"break",
9+
"byte",
10+
"case",
11+
"catch",
12+
"char",
13+
"checked",
14+
"class",
15+
"const",
16+
"continue",
17+
"decimal",
18+
"default",
19+
"delegate",
20+
"do",
21+
"double",
22+
"else",
23+
"enum",
24+
"event",
25+
"explicit",
26+
"extern",
27+
"false",
28+
"finally",
29+
"fixed",
30+
"float",
31+
"for",
32+
"foreach",
33+
"goto",
34+
"if",
35+
"implicit",
36+
"in",
37+
"int",
38+
"interface",
39+
"internal",
40+
"is",
41+
"lock",
42+
"long",
43+
"namespace",
44+
"new",
45+
"null",
46+
"object",
47+
"operator",
48+
"out",
49+
"override",
50+
"params",
51+
"private",
52+
"protected",
53+
"public",
54+
"readonly",
55+
"ref",
56+
"return",
57+
"sbyte",
58+
"sealed",
59+
"short",
60+
"sizeof",
61+
"stackalloc",
62+
"static",
63+
"string",
64+
"struct",
65+
"switch",
66+
"this",
67+
"throw",
68+
"true",
69+
"try",
70+
"typeof",
71+
"uint",
72+
"ulong",
73+
"unchecked",
74+
"unsafe",
75+
"ushort",
76+
"using",
77+
"virtual",
78+
"void",
79+
"volatile",
80+
"while"
6181
],
6282

6383
"dataTypes": {

languages/CSharpNewtonsoft.json

Lines changed: 77 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,83 @@
11
{
22
"modelStart": "{\n",
33
"reservedKeywords": [
4-
"abstract",
5-
"assert",
6-
"boolean",
7-
"break",
8-
"byte",
9-
"case",
10-
"catch",
11-
"char",
12-
"class",
13-
"const",
14-
"continue",
15-
"default",
16-
"do",
17-
"double",
18-
"else",
19-
"enum",
20-
"extends",
21-
"false",
22-
"final",
23-
"finally",
24-
"float",
25-
"for",
26-
"goto",
27-
"if",
28-
"implements",
29-
"import",
30-
"instanceof",
31-
"int",
32-
"interface",
33-
"long",
34-
"native",
35-
"new",
36-
"null",
37-
"package",
38-
"private",
39-
"protected",
40-
"public",
41-
"return",
42-
"short",
43-
"static",
44-
"strictfp",
45-
"super",
46-
"switch",
47-
"synchronized",
48-
"this",
49-
"throw",
50-
"throws",
51-
"transient",
52-
"true",
53-
"try",
54-
"void",
55-
"volatile",
56-
"while",
57-
"class",
58-
"description",
59-
"string",
60-
"object"
4+
"abstract",
5+
"as",
6+
"base",
7+
"bool",
8+
"break",
9+
"byte",
10+
"case",
11+
"catch",
12+
"char",
13+
"checked",
14+
"class",
15+
"const",
16+
"continue",
17+
"decimal",
18+
"default",
19+
"delegate",
20+
"do",
21+
"double",
22+
"else",
23+
"enum",
24+
"event",
25+
"explicit",
26+
"extern",
27+
"false",
28+
"finally",
29+
"fixed",
30+
"float",
31+
"for",
32+
"foreach",
33+
"goto",
34+
"if",
35+
"implicit",
36+
"in",
37+
"int",
38+
"interface",
39+
"internal",
40+
"is",
41+
"lock",
42+
"long",
43+
"namespace",
44+
"new",
45+
"null",
46+
"object",
47+
"operator",
48+
"out",
49+
"override",
50+
"params",
51+
"private",
52+
"protected",
53+
"public",
54+
"readonly",
55+
"ref",
56+
"return",
57+
"sbyte",
58+
"sealed",
59+
"short",
60+
"sizeof",
61+
"stackalloc",
62+
"static",
63+
"string",
64+
"struct",
65+
"switch",
66+
"this",
67+
"throw",
68+
"true",
69+
"try",
70+
"typeof",
71+
"uint",
72+
"ulong",
73+
"unchecked",
74+
"unsafe",
75+
"ushort",
76+
"using",
77+
"virtual",
78+
"void",
79+
"volatile",
80+
"while"
6181
],
6282

6383
"dataTypes": {

0 commit comments

Comments
 (0)