Ryujinx-GtkSharp/gtkhtml/HTMLStream.custom

7 lines
157 B
Plaintext
Raw Normal View History

public void Write (string buffer)
{
byte [] bytes = System.Text.Encoding.UTF8.GetBytes (buffer);
gtk_html_stream_write (ref this, bytes, bytes.Length);
}