20 lines
438 B
C#
20 lines
438 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Text;
|
||
|
|
|
||
|
|
namespace libsecondlife.LLSD
|
||
|
|
{
|
||
|
|
public static partial class LLSDParser
|
||
|
|
{
|
||
|
|
public static object DeserializeBinary(byte[] binaryData)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
|
||
|
|
public static byte[] SerializeBinary(object data)
|
||
|
|
{
|
||
|
|
throw new NotImplementedException();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|