RocketLeagueReplayParser.BitWriter.Write C# (CSharp) Метод

Write() публичный Метод

public Write ( IEnumerable bytes ) : void
bytes IEnumerable
Результат void
        public void Write(IEnumerable<byte> bytes)
        {
            foreach(var b in bytes)
            {
                Write(b);
            }
        }

Same methods

BitWriter::Write ( UInt32 value ) : void
BitWriter::Write ( UInt32 value, UInt32 maxValue ) : void
BitWriter::Write ( bool value ) : void
BitWriter::Write ( byte value ) : void
BitWriter::Write ( float value ) : void

Usage Example

Пример #1
0
 public static void Serialize(this string s, BitWriter bw)
 {
     bw.Write(s.Serialize());
 }
All Usage Examples Of RocketLeagueReplayParser.BitWriter::Write