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:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user