0

Does the C# Compiler read the code line by line?

Please ExplainBriefly.

15th Jun 2018, 1:47 PM
Hrishikesh Nag
2 Answers
0
Compilers don't read code line by line, interpreters do. C# is compiled - the whole source code compiles at once with the compile option.
15th Jun 2018, 2:04 PM
Akib
Akib - avatar
0
c# translates the code you input into machine language, which is executed command by command
15th Jun 2018, 3:19 PM
hinanawi
hinanawi - avatar