2
Answers

Could you please provide the C# for the VB code?

Rosily

Rosily

14y
2.9k
1
It is urget Plese reply at the earliest

My code is 
Using reader As StreamReader = File.OpenText("test.txt")
  Dim line As String = reader.ReadLine()
  While Not line Is Nothing
    Console.WriteLine(line)
    line = reader.ReadLine()
  End While

/thanks in advance

Answers (2)