dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/IO BinaryWriter.cs, 1.


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/IO BinaryWriter.cs, 1.5, 1.6
Date: Mon, 01 Sep 2003 22:21:58 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/IO
In directory subversions:/tmp/cvs-serv12522/runtime/System/IO

Modified Files:
        BinaryWriter.cs 
Log Message:


Finish the implementation of "ResourceWriter".


Index: BinaryWriter.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/runtime/System/IO/BinaryWriter.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** BinaryWriter.cs     10 May 2003 17:27:11 -0000      1.5
--- BinaryWriter.cs     2 Sep 2003 02:21:55 -0000       1.6
***************
*** 22,31 ****
  {
  
- #if !ECMA_COMPAT
- 
  using System;
  using System.Text;
  
! public class BinaryWriter : IDisposable
  {
        // The null binary writer.
--- 22,34 ----
  {
  
  using System;
  using System.Text;
  
! #if ECMA_COMPAT
! internal
! #else
! public
! #endif
! class BinaryWriter : IDisposable
  {
        // The null binary writer.
***************
*** 376,383 ****
                                Write((byte)temp);
                        }
  
  }; // class BinaryWriter
- 
- #endif // !ECMA_COMPAT
  
  }; // namespace System.IO
--- 379,388 ----
                                Write((byte)temp);
                        }
+       internal void Write7BitEncoded(int value)
+                       {
+                               Write7BitEncodedInt(value);
+                       }
  
  }; // class BinaryWriter
  
  }; // namespace System.IO





reply via email to

[Prev in Thread] Current Thread [Next in Thread]