Go Back   CodingForums.com > :: Computing & Sciences > Computer Programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 12-22-2002, 04:11 PM   PM User | #1
tommy85
New to the CF scene

 
Join Date: Dec 2002
Location: Malaysia
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
tommy85 is an unknown quantity at this point
Question Visual Studio.NET

Can you tell me what is the use of Visual Studio.NET ??? What program can I do with it ??? eg, C++, visual basic, etc. ?? and was it a compiler ???

Last edited by tommy85; 12-22-2002 at 04:13 PM..
tommy85 is offline   Reply With Quote
Old 12-29-2002, 06:21 AM   PM User | #2
reubenb
Regular Coder

 
Join Date: Sep 2002
Location: Adelaide, Australia
Posts: 472
Thanks: 3
Thanked 0 Times in 0 Posts
reubenb is an unknown quantity at this point
visual studio .net is langages like c++ basic and the others in one program. a complier is a thing that complies the script into an actual program or .ocx or whatever you're doing.
reubenb is offline   Reply With Quote
Old 01-14-2003, 03:53 AM   PM User | #3
miranda
Senior Coder

 
Join Date: Dec 2002
Location: Arlington, Texas USA
Posts: 1,062
Thanks: 4
Thanked 8 Times in 8 Posts
miranda is an unknown quantity at this point
it is an IDE for developing visual basic, visual C++ , visual C#. all using the common language runtime you can also write web solutions in asp.net vb.net is the newest version of visual basic aka vb7
miranda is offline   Reply With Quote
Old 01-14-2003, 04:48 AM   PM User | #4
codefox
Regular Coder

 
Join Date: Nov 2002
Location: India
Posts: 159
Thanks: 0
Thanked 0 Times in 0 Posts
codefox is an unknown quantity at this point
Your processor cannot understand C, C++ or Java. It can interpret a set of instructions called it's instruction set. Now, to get your job done, you need to use these instructions to convey your logic. But that would require you to write your programs in 0s and 1s. Since it's not really easy to program that way, high level languages were created. But still the processor couldn't interpret these high level languages. So the programs written in HLLs should be converted to instructions that the processor could understand. Compiler does this. When you write a program in C, a software called compiler (a C compiler in this case) converts the C program to machine code which could be run by the processor. The problem is there's not just 1 processor but there are many. So to compile a C program in UNIX, you need a different C compiler, and for Windows you need another. Also, to compile in Intel processor you need a different compiler and for Alpha you need another.

Sun brought the concept of Java Virtual Machine (JVM) wherein your java program is not compiled to machine code which can run only on the processor type where it was compiled, but it's compiled to "bytecode" which could be run on any machine! Of course this is possible only if the machine where you want the program to run has JVM .

Now .NET is something similar to the JVM. Here the virtual machine is called the common language runtime(CLR). Also the programs compiled for the CLR could be run on any "Windows" system that has CLR. I haven't learnt .NET yet but it seems to be cool in the sense whether you write a program in C, or C++, or C#, or even ASP, they are compiled to the same intermediate code which could be run on the CLR! So you have choices. If you know visual basic but not C that wouldn't stop you from programming for the CLR. You can use the language of your choice but still run the programs as effectively as any other language for .NET.
codefox is offline   Reply With Quote
Old 01-21-2003, 06:31 AM   PM User | #5
ebco
Regular Coder

 
Join Date: Jun 2002
Posts: 156
Thanks: 0
Thanked 0 Times in 0 Posts
ebco is an unknown quantity at this point
Hi,

I don't have experience of any of the computer language.
What i know is html,dhtml,javascript & ASP

What should I do to learn the .net using c#?

Any Advise......
ebco is offline   Reply With Quote
Old 01-21-2003, 09:03 PM   PM User | #6
miranda
Senior Coder

 
Join Date: Dec 2002
Location: Arlington, Texas USA
Posts: 1,062
Thanks: 4
Thanked 8 Times in 8 Posts
miranda is an unknown quantity at this point
If you can learn on your own then try to get some of the beginners books on C# . If you are proficient with Javascript, and can write your own script's, then the syntax for C# should be somewhat familiar to you. This should give you a bit of a head start. Otherwise try taking a class in it.
miranda is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 02:10 AM.


Advertisement
Log in to turn off these ads.