UTF8 is a member of the Encoding class.Quote:
in bytes data there's no string value. it's char or char array
look in my source code posted previousely. the best way in your exemple is to peek data in byte array type and convert it with :
System.Encoding.GetEncoding("UTF-8").GetString(bytesStr)
UTF-8 is just exemple, use good string encoding of Sro_client.exe
Yea , thats correctQuote:
FALAR[C -> S][7576]
01 ................
00 ................
00 ................
02 00 ................
PacketWriter Writer = new PacketWriter();
Writer.Create(0x7576);
Writer.UInt8(1);
Writer.UInt8(0);
Writer.UInt8(0);
Writer.UInt16(2);
Correct ??
exapmple ?