public static int Write(RubyIO /*!*/ self, [NotNull] MutableString /*!*/ val) { self.AssertOpenedForWriting(); int bytesWritten = self.Write(val); if (self.AutoFlush) { self.Flush(); } return(bytesWritten); }
public static int Write(RubyIO/*!*/ self, [NotNull]MutableString/*!*/ val) { self.AssertOpenedForWriting(); int bytesWritten = self.Write(val); if (self.AutoFlush) { self.Flush(); } return bytesWritten; }