Writes a string to the assembly or user-isolated storage
'Namespace: System.IO
'Namespace: System.IO.IsolatedStorage
'Namespace: Microsoft.VisualBasic
'storage: "syntaxhelp.txt"
'data: "hello world"
Dim isolatedStore As IsolatedStorageFile = IsolatedStorageFile.GetStore(IsolatedStorageScope.User Or IsolatedStorageScope.Assembly, Nothing, Nothing)
Dim isoStream As New IsolatedStorageFileStream("syntaxhelp.txt", FileMode.Append, FileAccess.Write, isolatedStore)
Using writer As New StreamWriter(isoStream)
writer.WriteLine("hello world")
End Using