WIP on data binding, nothing is working...

This commit is contained in:
2017-09-12 18:20:32 +02:00
parent 4487f0343f
commit 1cd7c0411c
33 changed files with 1397 additions and 1373 deletions

View File

@@ -42,8 +42,8 @@ namespace ModernKeePassLib.Serialization
public override byte[] ReadBytes(int count)
{
try
{
/*try
{*/
byte[] pb = base.ReadBytes(count);
if((pb == null) || (pb.Length != count))
{
@@ -52,12 +52,12 @@ namespace ModernKeePassLib.Serialization
}
return pb;
}
catch(Exception)
/*}
catch(Exception ex)
{
if(m_strReadExcp != null) throw new IOException(m_strReadExcp);
else throw;
}
}*/
}
}
}