This commit is contained in:
Natsumi
2023-06-07 01:02:52 +12:00
parent 70249ea790
commit e1de8508c6
14 changed files with 64 additions and 55 deletions

View File

@@ -46,7 +46,7 @@ namespace VRCX
public string GetAssetVersion(int version)
{
byte[] bytes = BitConverter.GetBytes(version);
string versionHex = String.Empty;
string versionHex = string.Empty;
foreach (byte b in bytes)
{
versionHex += b.ToString("X2");