0
What's the difference between c# & java?
is their a difference
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.