This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##Version 0.2.0 | |
##Date: 21/06/2016 | |
##Author: Daniel Ferguson | |
#Added | |
[+] Added Parse Framework | |
[+] Added Parse User Background | |
[+] Added Parse Logout to Dashboard.XML | |
#Removed | |
[-] Removed Many, Many “TODO”s | |
#Important To-Dos: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SYSTEM IO - Reading from a text file (.txt) | |
// Read the file as one string. | |
string text = System.IO.File.ReadAllText(@"C:\Users\Public\TestFolder\WriteText.txt"); | |
// DISPLAY the file contents to the console. Variable text is a string | |
System.Console.WriteLine("Contents of WriteText.txt = {0}", text); | |
// READ each line of the file into a string array. Each element of the array is one line of the file | |
string[] lines = System.IO.File.ReadAllLines(@"C:\Users\Public\TestFolder\WriteLines2.txt"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Init a data type | |
int intName; | |
string stringName; | |
double doubleName; | |
float floatName; | |
// Creates a CONST variable - cannot be modified, or reassigned | |
const int intName; | |
// Show a MessageBox |