Update ZNI Library
This commit is contained in:
parent
0638f7e642
commit
eeadcb1959
10 changed files with 753 additions and 388 deletions
|
@ -224,6 +224,32 @@ namespace LibZNI.Serialization.ZNIFile
|
|||
}
|
||||
}
|
||||
}
|
||||
public ulong uLongValue
|
||||
{
|
||||
get
|
||||
{
|
||||
switch (Type)
|
||||
{
|
||||
case TagType.ULONG:
|
||||
return (this as uLongTag).Value;
|
||||
default:
|
||||
throw new Exception("Invalid type");
|
||||
}
|
||||
}
|
||||
}
|
||||
public Guid UUIDValue
|
||||
{
|
||||
get
|
||||
{
|
||||
switch (Type)
|
||||
{
|
||||
case TagType.UUID:
|
||||
return (this as UUIDTag).Value;
|
||||
default:
|
||||
throw new Exception("Invalid type");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public abstract void Rename(string old, string newName);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue