Write console application vb.net
Referring this tutorial you can learn how to write console application using visual studio and these
Basic command:
Console.Write(a)
Console.WriteLine()
Console.ReadLine()
How to open Console project
File -- > New -- > Project
Select Visual Basic
Select Console Application
See image :
Set Programme path and Name then click Ok.
Now you can write code here.
(i) Console.write()
Using this command you can retrieve one or more characters without insert new line.
Ex : Console.write(“www .etutez.com “)
(ii) Console.writeline()
Using this command you can retrive one or more charactors with new line.
Ex : console.writeline (“www. etutez .com”)
(iii) Console.Readline()
Using this command read character standard input stream.
Ex :
dim a as string
a=console.readline()
console.write(a)
if you enter www .etutez .com then below image..
Got to learn about visual studio first.
I learnt visual studio. what's the matter???
Really good information. keep posting. Tx.