jhylands

Write to file

Jan 3rd, 2012
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.17 KB | None | 0 0
  1. Public sub WriteToFile(byval FileLocation as string, byval Text as string)
  2. dim writer as new system.io.streamwriter(FileLocation)
  3. writer.write(Text)
  4. writer.close
  5. End sub
Advertisement
Add Comment
Please, Sign In to add comment