CSharpRTMP.Common.IOHelper.Write C# (CSharp) Метод

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

public static Write ( this buffer, int offset, string value ) : void
buffer this
offset int
value string
Результат void
        public static void Write(this byte[] buffer, int offset, string value)
        {
            var charArray = value.ToCharArray();
           Buffer.BlockCopy(charArray, 0,buffer,offset, charArray.Length);
        }
        public static void Write(this Stream s, uint value)

Same methods

IOHelper::Write ( this buffer, int offset, uint value ) : void
IOHelper::Write ( this buffer, int offset, ulong value ) : void
IOHelper::Write ( this buffer, int offset, ushort value ) : void
IOHelper::Write ( this s, string str ) : void
IOHelper::Write ( this s, uint value ) : void
IOHelper::Write ( this s, ushort value ) : void