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 b4cd4a4 commit 3d3be53Copy full SHA for 3d3be53
dotnet/src/dotnetframework/GxClasses/Helpers/GXRestAPIClient.cs
@@ -378,7 +378,7 @@ public Guid GetBodyGuid(string varName)
378
379
public Decimal GetBodyNum(string varName)
380
{
381
- try
+ try
382
383
return Decimal.Parse(GetJsonStr(varName), NumberStyles.Float, CultureInfo.InvariantCulture);
384
}
@@ -390,7 +390,7 @@ public Decimal GetBodyNum(string varName)
390
391
Console.WriteLine("Failed to parse number due to overflow exception.");
392
393
- // Return a empty value in case of an exception
+ // Return an empty value in case of an exception
394
return 0m;
395
396
public long GetBodyLong(string varName)
0 commit comments