2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-27 05:23:13 +00:00

Guid to UUID

This commit is contained in:
2025-03-03 04:48:53 +03:00
parent 47272f5463
commit 276e7b17fd
14 changed files with 195 additions and 121 deletions

View File

@ -64,11 +64,17 @@ public class BinaryList
}
public BinaryList AddGuid(Guid value)
public BinaryList AddUUID(UUID value)
{
list.AddRange(DC.ToBytes(value));
list.AddRange(value.Data);
return this;
}
//public BinaryList AddGuid(Guid value)
//{
// list.AddRange(DC.ToBytes(value));
// return this;
//}
public BinaryList InsertGuid(int position, Guid value)
{