// content.bytes + this.chars[start, count]
            public override void AppendTo(BinaryContent /*!*/ content, int start, int count)
            {
                if (start > _count - count)
                {
                    throw new ArgumentOutOfRangeException("start");
                }

                content.AppendBytes(_data, start, count);
            }
 // content.bytes + this.chars[start, count]
 public override void AppendTo(BinaryContent/*!*/ content, int start, int count) {
     content.AppendBytes(_data, start, count);
 }
            // content.bytes + this.chars[start, count]
            public override void AppendTo(BinaryContent/*!*/ content, int start, int count) {
                if (start > _count - count) {
                    throw new ArgumentOutOfRangeException("start");
                }

                content.AppendBytes(_data, start, count);
            }
Exemple #4
0
 // content.bytes + this.chars[start, count]
 public override void AppendTo(BinaryContent /*!*/ content, int start, int count)
 {
     content.AppendBytes(_data, start, count);
 }