MyBinaryWriter.cs 359 B

123456789101112131415
  1. //using System;
  2. //using System.IO;
  3. //namespace Mono.CompilerServices.SymbolWriter
  4. //{
  5. // internal class MyBinaryWriter : BinaryWriter
  6. // {
  7. // public MyBinaryWriter(Stream stream) : base(stream)
  8. // {
  9. // }
  10. // public void WriteLeb128(int value)
  11. // {
  12. // base.Write7BitEncodedInt(value);
  13. // }
  14. // }
  15. //}