C# used in Windows App?

Ann McCall

Member
Joined
Sep 6, 2007
Messages
10
Programming Experience
1-3
Hi,

Can you use C# language if it is a windows app or does it have to be VB?

Thanks
 
VB.Net, C#, C++.Net and J++.Net can all make .Net windows apps

You can also use C# dll's in your vb.net app and visa versa too
 
Hi,

Can you use C# language if it is a windows app or does it have to be VB?

Thanks

Thats quite a strange question; what makes you ask?

Any language that has a compiler on the Intel platform can be used to make a program for the Intel platform. Some compilers are written in the language they compile, but usually the first compiler for the platform has to be hand assembled directly in machine code. That boggles my mind, that does.. Some smart guy at intel wrote an assembler (program that takes assembly language, a plain english but very very low level language that is very close to what the CPU does directly) then someone else painstakingly wrote e.g. a C compiler in assembly, then other people wrote other compilers for their languages in C ... and so it grows

It's like.. how did we learn to write? Did someone really sit down thoudands of years ago and say "Right.. I'm going to make 26 letters and they are going to represent al the sounds we can make and heres how to write down those sounds.."
How does language come about? English is written in english.. It's self proved.. How did the chicken create the eggcreate the chicken? Interesting isnt it?
 
Back
Top