Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~444 People Reached
Favorite Forums
Member Avatar for googles_go~

[code] if (infile != null) { infile.Close(); } if (reader != null) { reader.Close(); } //Creating a File Stream object to Open a file called FILENAME for writing outfile = new FileStream(FILENAME, FileMode.Append, FileAccess.Write); //Creating a Stream Writer with the outFile File Stream object writer = new StreamWriter(outfile); writer.Write("Income : …

Member Avatar for jonsca
0
134
Member Avatar for googles_go~

Ok erm here goes, im supposed to create a simple log in application using c#, howeaver, all the records of the userIDs and PINs are in a notepad file, which means i need to use a filestream. But heres the problem, how can i make my filestream object read through …

Member Avatar for jonsca
0
310