We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c98ed8 commit d4289feCopy full SHA for d4289fe
GeometryDashAPI/GeometryDashApi.cs
@@ -19,7 +19,7 @@ public class GeometryDashApi
19
{ typeof(byte), x => byte.Parse(x) },
20
{ typeof(short), x => short.Parse(x) },
21
{ typeof(int), x => int.Parse(x) },
22
- { typeof(int?), x => string.IsNullOrEmpty(x) ? null : int.Parse(x) },
+ { typeof(int?), x => string.IsNullOrEmpty(x) ? (int?)null : int.Parse(x) },
23
{ typeof(long), x => long.Parse(x) },
24
{ typeof(double), x => GameConvert.StringToDouble(x) },
25
{ typeof(float), x => GameConvert.StringToSingle(x) },
0 commit comments