Hello,

Just curious, what's the difference between:

Code:
Dim sr As StreamReader = File.OpenText(SourceFileLocation)
and
Code:
Dim sr As StreamReader = New StreamReader(SourceFileLocation)
Both do the same thing of course and both works, but I'm just curious which method I should be using.

Thanks,

Strick