This commit is contained in:
Ilya P 2016-10-11 16:28:57 +03:00
parent a14dfdc1fe
commit 2ffa954246
9 changed files with 225 additions and 37 deletions

View file

@ -53,7 +53,11 @@ namespace TeleSharp.TL
public override void SerializeBody(BinaryWriter bw)
{
throw new NotImplementedException();
bw.Write(Constructor);
foreach (var item in lists.Cast<TLObject>())
{
item.SerializeBody(bw);
}
}
}
}