No it isn't. You wouldn't normally use FileStream for text but it's actually not that difficult.

vb.net Code:
  1. Dim writer As New IO.FileStream(filename, IO.FileMode.OpenOrCreate, IO.FileAccess.Write)
  2.         Dim s As String = "Name Surname" ' for example
  3.         Dim b(s.Length - 1) As Byte
  4.         For i = 0 To b.Length - 1
  5.             b(i) = BitConverter.GetBytes(s(i))(0) ' it will always be one byte for a character
  6.         Next
  7.         writer.Write(b, offset, b.Length) ' bytearray, position, length
  8.         writer.Close()