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