System.IO.Stream.SyncStream.Write C# (CSharp) Méthode

Write() public méthode

public Write ( byte bytes, int offset, int count ) : void
bytes byte
offset int
count int
Résultat void
            public override void Write(byte[] bytes, int offset, int count)
            {
                lock(_stream)
                    _stream.Write(bytes, offset, count);
            }