- removed non-generic TLVector

- write length of Vector during Serialization
This commit is contained in:
Ilya P 2016-10-23 11:17:59 +03:00
parent f40034ad09
commit 7fd0413c7e
4 changed files with 4 additions and 42 deletions

View file

@ -1,39 +0,0 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TeleSharp.TL;
namespace TeleSharp.TL
{
[TLObject(481674261)]
public class TLVector : TLObject
{
public override int Constructor
{
get
{
return 481674261;
}
}
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
}
}
}