Ejemplo n.º 1
0
 public static int Rewind(StringIO /*!*/ self)
 {
     self.GetContent();
     self._position   = 0;
     self._lineNumber = 0;
     return(0);
 }
Ejemplo n.º 2
0
 public static int GetLength(StringIO /*!*/ self)
 {
     return(self.GetContent().GetByteCount());
 }
Ejemplo n.º 3
0
 public static void Close(StringIO /*!*/ self)
 {
     self.GetContent();
     self.Close();
 }
Ejemplo n.º 4
0
 public static int Rewind(StringIO/*!*/ self) {
     self.GetContent();
     self._position = 0;
     self._lineNumber = 0;
     return 0;
 }
Ejemplo n.º 5
0
 public static int GetLength(StringIO/*!*/ self) {
     return self.GetContent().GetByteCount();
 }
Ejemplo n.º 6
0
 public static void Close(StringIO/*!*/ self) {
     self.GetContent();
     self.Close();
 }