Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Helpers
- {
- private static readonly string _tosPath = "TermsOfService.txt";
- internal string GetTosText()
- {
- var fileData = File.ReadAllText(_tosPath);
- if (fileData != null)
- {
- return fileData;
- }
- else
- {
- return """
- No Tos Text Was Found
- If you believe this to be in error then try restarting
- the program, otherwise, please create a new issue on
- the github repo page.
- -Mekasu
- """;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment