how c# compiler works??
how it parses our whole solutions and .cs files... i want to know where it start and how everything works... i want to know from the asp.net perspective...
thx
how c# compiler works??
how it parses our whole solutions and .cs files... i want to know where it start and how everything works... i want to know from the asp.net perspective...
thx
If you're really interested in how a C# compiler works, you may want to read the source code from Mono's compiler, mcs.
A really brief explanation could be:
Eric Lippert gave a great synopsis of the C# compiler in this answer.