Guest User

Untitled

a guest
Jul 18th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public string[] ReadData(string DataDir)
  2. {
  3. if (System.IO.File.Exists(DataDir) == true)
  4. {
  5. return System.IO.File.ReadAllLines(DataDir).ToArray();
  6. }
  7. else
  8. return null;
  9. }
Add Comment
Please, Sign In to add comment