Utilities: Renamed ReadGuidBytes / WriteGuidBytes to ReadGuid / WriteGuid

This commit is contained in:
TalAloni 2020-11-20 11:07:39 +02:00
parent f5d727ddf2
commit 153abe3d27
12 changed files with 21 additions and 21 deletions

View file

@ -89,7 +89,7 @@ namespace Utilities
return LittleEndianConverter.ToUInt64(buffer, 0);
}
public static Guid ReadGuidBytes(Stream stream)
public static Guid ReadGuid(Stream stream)
{
byte[] buffer = new byte[16];
stream.Read(buffer, 0, 16);