Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Couple of questions ... Is C# pl

Status
Not open for further replies.

sedj

Programmer
Aug 6, 2002
5,610
Couple of questions ...

Is C# platform independant (like java) ?

Is the compiled code machine or byte ?

How easy is it to cross over from java to C# (know C and java already)

Cheers fella's

Ben
 

1) It isn't platform independant (yet).
2) It is compiled to MSIL (ms intermidate language), and then when it's actually run it is converted to machine code with the JIT compiler.
3)If you know C and Java then you won't have a problem, probably 30% time learning the syntax, 70% learning the framework classes.

CHeers
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top