0
Does the C# Compiler read the code line by line?
Please ExplainBriefly.
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.
0
c# translates the code you input into machine language, which is executed command by command