jhylands

Read from file

Jan 3rd, 2012
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.16 KB | None | 0 0
  1. Public function ReadFile(byval FileLocation as string) as string
  2. dim read as new system.io.streamreader(FileLocation)
  3. ReadFile = read.readtoend
  4. End function
Advertisement
Add Comment
Please, Sign In to add comment