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