update 1.0.0.3
This commit is contained in:
parent
2b81bd6f24
commit
2a064be75f
@ -31,8 +31,8 @@
|
||||
<Description>批量转换图像为PDF的小工具</Description>
|
||||
<Product>ConsoleApp1</Product>
|
||||
<Copyright>Copyright © Chenx221 2023</Copyright>
|
||||
<AssemblyVersion>1.0.0.2</AssemblyVersion>
|
||||
<FileVersion>1.0.0.2</FileVersion>
|
||||
<AssemblyVersion>1.0.0.3</AssemblyVersion>
|
||||
<FileVersion>1.0.0.3</FileVersion>
|
||||
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
|
||||
<StartupObject>ConsoleApp1.Program</StartupObject>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
|
@ -8,6 +8,7 @@ using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Text;
|
||||
using System.Numerics;
|
||||
|
||||
namespace ConsoleApp1
|
||||
{
|
||||
@ -157,8 +158,8 @@ namespace ConsoleApp1
|
||||
int matchCount = Math.Min(matchesX.Count, matchesY.Count);
|
||||
for (int i = 0; i < matchCount; i++)
|
||||
{
|
||||
int numX = int.Parse(matchesX[i].Value);
|
||||
int numY = int.Parse(matchesY[i].Value);
|
||||
BigInteger numX = BigInteger.Parse(matchesX[i].Value);
|
||||
BigInteger numY = BigInteger.Parse(matchesY[i].Value);
|
||||
|
||||
int numComparison = numX.CompareTo(numY);
|
||||
if (numComparison != 0)
|
||||
|
Reference in New Issue
Block a user