Switch int to var so IntelliSense is satisfied

This commit is contained in:
qqt 2022-01-18 04:30:09 +00:00 committed by GitHub
parent c103e17b0b
commit c9db88458d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ namespace Discord_Cache_Viewer
// Constants for more efficient memory management
const string header = "PNG", extension = ".png";
const ushort index = 0;
for (int i = 0; i < files.Length; i++)
for (var i = 0; i < files.Length; i++)
{
// Cache the file path
var filePath = files[i];