* Added KeyValuePair overloads for DoubleDictionary.ForEach()
* Fixed conversions from OSDArray to long, ulong, and uint * More Cable Beach messages and tweaks * Initial commit of the Cable Beach message template (LLIDL) git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2647 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -920,6 +920,24 @@ namespace OpenMetaverse.StructuredData
|
||||
return binary;
|
||||
}
|
||||
|
||||
public override long AsLong()
|
||||
{
|
||||
OSDBinary binary = new OSDBinary(AsBinary());
|
||||
return binary.AsLong();
|
||||
}
|
||||
|
||||
public override ulong AsULong()
|
||||
{
|
||||
OSDBinary binary = new OSDBinary(AsBinary());
|
||||
return binary.AsULong();
|
||||
}
|
||||
|
||||
public override uint AsUInteger()
|
||||
{
|
||||
OSDBinary binary = new OSDBinary(AsBinary());
|
||||
return binary.AsUInteger();
|
||||
}
|
||||
|
||||
public override Vector2 AsVector2()
|
||||
{
|
||||
Vector2 vector = Vector2.Zero;
|
||||
|
||||
Reference in New Issue
Block a user