Hi all
From where i can download the .net for learning purposes.
loveneesh
Printable View
Hi all
From where i can download the .net for learning purposes.
loveneesh
msdn.microsoft.com.Quote:
From where i can download the .net for learning purposes.
Look for the .NET framework SDK. Install it. Its free
then you can use any text editor to write code.
Notepad is king, but dos edit is god.....
How would you run the coding? :confused:
the compiler come with it and is comman line driven.
vbc.exe
the command to compile a .vb file written in notepad to an exe would be
vbc myexe.vb
and that would create an exe named myexe.exe
their are other options availble you may need like adding references to the compile, telling it to compile to a dll, etc...
just run one of these>(not sure which is correct)
vbc
vbc /?
vbc -?
one of those will show all the options...cant remember which one though so I just showed all the possibilities that it may be..:P