Hi friends
How to read StreamReader in reverse direction??
My code is as below
Dim client As System.Net.WebC lient = New System.Net.WebC lient
Dim data As Stream = client.OpenRead (urlextract)
sr = New StreamReader(da ta)
so i want to read data in sr to be read line by line but condition is that i have to read last line first.
So how could be done??
Plz help me
Thanks in advance.
How to read StreamReader in reverse direction??
My code is as below
Dim client As System.Net.WebC lient = New System.Net.WebC lient
Dim data As Stream = client.OpenRead (urlextract)
sr = New StreamReader(da ta)
so i want to read data in sr to be read line by line but condition is that i have to read last line first.
So how could be done??
Plz help me
Thanks in advance.
Comment