0

What's the difference between c# & java?

is their a difference

25th Mar 2017, 7:51 PM
Ibrahim Hosny Abdo
Ibrahim Hosny Abdo - avatar
1 Answer
+ 1
C# is a .NET Framework language that is compiled to MSIL, which is comparable to Java bytecode. Both run on virtual machines (CLR vs JVM) where code is interpreted at runtime and translated into equivalent machine code. They're very similar in syntax as well. Java is more general-purpose and cross-platform than C#, which is primarily used on Windows systems.
25th Mar 2017, 8:04 PM
Squidy
Squidy - avatar