mirror of
https://github.com/sochix/TLSharp.git
synced 2026-04-04 22:18:59 +00:00
Generator Must Respect MS .NET API guidelines
This commit is contained in:
parent
3ba3ea53fd
commit
d769dd3c2f
646 changed files with 7213 additions and 7166 deletions
|
|
@ -18,8 +18,8 @@ namespace TeleSharp.TL
|
|||
}
|
||||
}
|
||||
|
||||
public double @long { get; set; }
|
||||
public double lat { get; set; }
|
||||
public double Long { get; set; }
|
||||
public double Lat { get; set; }
|
||||
|
||||
|
||||
public void ComputeFlags()
|
||||
|
|
@ -29,16 +29,16 @@ namespace TeleSharp.TL
|
|||
|
||||
public override void DeserializeBody(BinaryReader br)
|
||||
{
|
||||
@long = br.ReadDouble();
|
||||
lat = br.ReadDouble();
|
||||
Long = br.ReadDouble();
|
||||
Lat = br.ReadDouble();
|
||||
|
||||
}
|
||||
|
||||
public override void SerializeBody(BinaryWriter bw)
|
||||
{
|
||||
bw.Write(Constructor);
|
||||
bw.Write(@long);
|
||||
bw.Write(lat);
|
||||
bw.Write(Long);
|
||||
bw.Write(Lat);
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue