mirror of
https://github.com/UltiNaruto/PKGTool
synced 2024-11-10 06:04:19 +00:00
Version 1.4.2
Readded decimal reading in BinaryReaderLE Fixed BinaryWriterLE stack overflow exception
This commit is contained in:
parent
f550397e48
commit
d771879949
2 changed files with 5 additions and 6 deletions
|
@ -90,7 +90,7 @@ namespace System.IO
|
||||||
|
|
||||||
public override decimal ReadDecimal()
|
public override decimal ReadDecimal()
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
return base.ReadDecimal();
|
||||||
}
|
}
|
||||||
|
|
||||||
public override sbyte ReadSByte()
|
public override sbyte ReadSByte()
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
using System.Linq;
|
using System.Text;
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace System.IO
|
namespace System.IO
|
||||||
{
|
{
|
||||||
|
@ -90,17 +89,17 @@ namespace System.IO
|
||||||
|
|
||||||
public override void Write(UInt16 v)
|
public override void Write(UInt16 v)
|
||||||
{
|
{
|
||||||
Write(v);
|
base.Write(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void Write(UInt32 v)
|
public override void Write(UInt32 v)
|
||||||
{
|
{
|
||||||
Write(v);
|
base.Write(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void Write(UInt64 v)
|
public override void Write(UInt64 v)
|
||||||
{
|
{
|
||||||
Write(v);
|
base.Write(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void Write(Single v)
|
public override void Write(Single v)
|
||||||
|
|
Loading…
Reference in a new issue