| Author: Kapil Dhawan 18 Jun 2008 | Member Level: Gold Points : 2 |
Hello Nice piece of code Thanks for sharing your knowledge with us. I hope to see more good code from your side This code will help lots of guys Thanks to you Regards, Kapil
|
| Author: Gaurav Arora 03 Aug 2008 | Member Level: Gold Points : 1 |
Hi!
This one is nice; it’s a tiny but with worth of meaning. I appreciate your way of sharing knowledge.
|
| Author: RamyaNaidu 06 Aug 2008 | Member Level: Silver Points : 2 |
Dim writer As StreamWriter = File.CreateText("D:\myfile.txt") writer.WriteLine("Out to file.") writer.Close() Dim reader As StreamReader = File.OpenText("D:\myfile.txt") Dim line As String = reader.ReadLine() While Not line Is Nothing Console.WriteLine(line) line = reader.ReadLine() End While reader.Close()
|
| Author: Raghav 17 Aug 2008 | Member Level: Gold Points : 1 |
Nice Piece of code. Hope you can provide some more good code example for the benefits of the members
Raghav Webmaster
|