0
How to read .vb file from c# programming .
Hello everyone, Can anyone help me to write c# programe that will read particular . vb files from visual studio... Thanks
2 Answers
+ 1
do you just want to read it or you want to execute it too ?
if it's just for reading, a simple
File.ReadAllText("file.vb");
can do it
0
both